ttarcadeproject
ttarcadeproject
ttArcadeProject
13 posts
Don't wanna be here? Send us removal request.
ttarcadeproject · 4 months ago
Text
Gameplay Video
youtube
1 note · View note
ttarcadeproject · 5 months ago
Text
Adding sound
first i looked for sounds in the folder and found one i thought would work well for my background music.
Tumblr media
i then imported the music into the game
Tumblr media
i then opened the blueprint and turned on looping for it
Tumblr media
after that i went into my third person character and put a play sound node onto my event begin play
Tumblr media
i then tested it to confirm it worked which it was.
i then went into my score screen ui and added a thing in the bottom to credit Sonny Watson because hes who made the music i used.
Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Importing Assets
First i had to export my items as obj files
Tumblr media Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Making Damage items
For my first damage item in going to make a seamine, first i made a grey circle
Tumblr media Tumblr media
i then added darker grey circles for where im going to put the antena parts of it
Tumblr media
i then added on the anteena with a lighter grey
Tumblr media
i thought it looked a bit bland so i used a yellow to add some crosses onto it
Tumblr media
For my other item im going to make a net
Tumblr media Tumblr media
i added outlines to both and changed the net a bit to have more lines
Tumblr media Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Making Collectables
first i made a 64x64x64 canvas on magicavoxel
Tumblr media
then i put it orthgraphic camera and looked at it from the top
Tumblr media Tumblr media
first i drew the outline for my first collectable item which is going to be a can
Tumblr media
i then added some colour to my can design
Tumblr media
it felt lacking in detail so i added a logo onto the side like a coke can and added the whole to the top.
Tumblr media Tumblr media
next i made the outline for a bottle cap which will be my low point amount item
Tumblr media
then i colourd it in
Tumblr media
then i added a shark design to the top to make it stand out more
Tumblr media Tumblr media Tumblr media
next for my large point item i made the outline for a tire with a bite taken out of it
Tumblr media
i thought it was a bit bland so i added some texture to the tyre and removed a bit of the inside of it
Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Making Spawner 2
i made an actor blueprint and named it gameover1
Tumblr media
in the view port i added a cube and made it the scene root
Tumblr media
i then made a level and called it WinLose
Tumblr media
after that i made a cast to third person character and if it succeds it opens the winlose level and destoys the actor, and if it hits anything else it just destroys the actor
Tumblr media
i also copied the movement code over from the item parent.
Tumblr media
i then duplicated the gameover1 and named the new one gameover2 and changed the material on the cube
Tumblr media
i then added both of the gameover items to the item array in the spawner
Tumblr media
i then wanted to make it so the spawn time gets lower as the game goes on to increase difficulty, to do this i made a float varible and called it spawn time, i then put it into a add node and added -0.005 and put that into a set spawn time node, after that it goes into the delay for the spawn actor, before the set node i put in a delay so that it only sets the delay once every second
Tumblr media
After 3 200 seconds this caused the spawn time to drop to 0 seconds so it spawned stuff non stop so i made it so if spawn time got 0.005 or less it would set it to 0.01 and added it to a sequence for the event tick. to test if it worked i moved the character spawn to somewhere off screen so it wont get hit by anything
Tumblr media
0.01 was too low as the screen still ended up clutterd with stuff so i changed the >= to a > and put both the < and set to 0.2
it looks like this at 0.2 second spawn which is a lot less clutterd
Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Making Spawner
First i made an actor blueprint and Named it spawned
Tumblr media
i then made a spawn actor node, and put the event tick with a delay into it so that it would spawn an actor once every 1 second
Tumblr media
then i split the transform pin
Tumblr media
i then added scene components and named each of them spawns for how many spawn points im going to have for my objects.
Tumblr media
i then put them all into the event graphs and put them into an array, this assigns them each a number so i can use a random integer to select a random one.
Tumblr media
i then put a random integer and put the max amount as the length of array so itll pick a number from 0-5 i then got that number and spawn and used it to get the world location which i put into the location transformation in the spawn actor node
Tumblr media
i then put the spawn actor into my map and moved each of the spawns into places i felt was right
Tumblr media Tumblr media
i then made an actor blueprint that I named Item_Parent
Tumblr media
i placed a sphere component in it and put it at 2 scale so its easier to see. i then made that sphere the scene root
Tumblr media
i then made sure simulate physics was turned off and set the collision preset to OverlapAllDynamic
Tumblr media
in the event graph i casted begin overlap to third person character
Tumblr media
from the cast failed i have it destroy the actor this means if it hits something that isnt the player it destroys the actor
Tumblr media
i also added a world offset on a delay to the event tick so that it would move the actor.
Tumblr media
i then made a game instance blueprint and named it Arcade_Game_Instance
Tumblr media
then inside my game instance i made 2 variables, score and high score.
Tumblr media
i then went back to my item_parent and cast the arcade_game_instance from the third person character cast.
Tumblr media
from the arcade game cast i got score put an add score and then a set score from that and then did a destroy actor so that it would destroy the actor after adding the score.
Tumblr media
i then promoted the bottom half of the add into a variable and named it item score
Tumblr media
i then created 3 child blueprints from the parent and named them item_child_01, item_child_02, item_child_03
Tumblr media
i opend them and gave each of them diffrent materials so u can tell them apart.
Tumblr media
i then made sure inherited variables were visible and i set them to 10,20 and 30
Tumblr media Tumblr media
i then went back to my spawner and made a variable called items and set it to a actor class reference
Tumblr media
i then made the variable type an array
Tumblr media
i then added 3 elements and made each of them the item children i made earlier
Tumblr media
then i got the array, got the length and used that to get a random integer so it will select a random object each time, i then put that into the actor class in the spawn actor node
Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Making Character
First i opend up MagicaVoxel and made my canvas size to 64x64x64 and then used orthographic camera and made it look directly down, this allows me to use it to make 2d art easier.
Tumblr media
next i made my first attempt at an outline, for this version i like the fact that the mouth is so big however i dislike the proportions of the rest of the shark as it doesnt look much like a basking shark which is what i was aiming for.
Tumblr media
my second version of the shark has more accurate proportions and looks better overall to me.
Tumblr media
my third version is a slightly edited v2 with better looking mouth, stomach and fins. this is going to be the version i use because out of the 3 its the one i think looks the best.
Tumblr media
i put colour into the shark, i used 2 shades of grey so there was some contrast between the bottom and top half of the shark.
Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Animated UI
Tumblr media
Tumblr media
Tumblr media Tumblr media
Tumblr media Tumblr media
Tumblr media Tumblr media Tumblr media Tumblr media
Tumblr media Tumblr media
Tumblr media Tumblr media
0 notes
ttarcadeproject · 5 months ago
Text
Fixed Camera system
Tumblr media
Tumblr media
0 notes
ttarcadeproject · 6 months ago
Text
Directional Movement
Tumblr media
orthogonal
Tumblr media
0 notes
ttarcadeproject · 6 months ago
Text
Input system
Tumblr media
Tumblr media
0 notes
ttarcadeproject · 6 months ago
Text
Top down arcade games
0 notes