-
Spawn actors at random times without them eventually spawning at the same time
by CraigMack ·I want to spawn a car randomly from four or more choices so the player has more options on where to go -
Spawn actors at random times without them eventually spawning at the same time
by CraigMack ·As you can see in that video the shapes spawn in at the top and move down i am trying to do the same concept but with cars. My problem is ive searched on youtube and the forums and all of the spawning -
Spawn actors at random times without them eventually spawning at the same time
by tatiang ·What might help is to have a description of how you want the cars to spawn. For example, do you want only one (randomly chosen from four choices) car to spawn at a time? Or do you want up to four ca -
Spawn actors at random times without them eventually spawning at the same time
by Simple Apps ·You take two spawnners -
Spawn actors at random times without them eventually spawning at the same time
by CraigMack ·Yes i understand what you mean but my game is kind of like the game on the app store 2 cars by ketchapp if you guys have it. I need to avoid the cars that spawn at the top of the screen by moving left -
Spawn actors at random times without them eventually spawning at the same time
by Simple Apps ·I think you can use only one actor to spawn enemies down. -
Spawn actors at random times without them eventually spawning at the same time
by CraigMack ·I am creating a car game where the main car (You) needs to avoid cars that are coming down the road, and to do this you need to switch lanes. The main problem I have is spawning in the Enemy cars that -
particles galore
by shylevari ·when the integer reaches the same rule ( >=18) the particles now spawn at a singular point (different each time) instead of being spread around. why? -
swinging continuous motion
by shylevari ·near the first one it made the paratroopers wobble faster (but not fall faster), and near the second one it made the paratroopers spawn lower on the screen - but not fall faster -
How do I allow user to take screen shot and save/load projects within my working app?
by tatiang ·The best I can think of is that you could record all of the paint strokes and play them back (spawn them again) when the user loads their drawing but it's both cumbersome and inelegant. -
[SOLVED] Spawning Actors Based On A Configurable Percentage?
by tatiang ·You're on the right track. You would still use random(1,10) but the rule would be if game.random<game.percentage+1, spawn. The value of game.percentage could change (1 would be 10%, 2 would be -
[SOLVED] Spawning Actors Based On A Configurable Percentage?
by tatiang ·The random() function can be used for probability. A ten percent change is created by using Change Attribute game.random to random(1,10) and a rule that says If game.random<2, spawn. A 20% ch -
Flappy Bird!
by shortcircuitgames ·You guys should check out Jousty Jack, it's a super unique twist on the whole tap to fly game concept. It even has an end boss if you can get that far...i don't think anyone has. -
[SOLVED] Spawning Actors Based On A Configurable Percentage?
by SikkJewFro ·In sets of four (Can be upgraded in my shop) every 1.4 seconds (Can also be lowered in shop) Ore-Chunks will spawn at random locations on screen. So, 1.4 seconds -> four coal spawn in random pl -
how to change a character on request
by tatiang ·If you really need to switch actors, spawn the new actor and then destroy the existing one. But usually, this sort of thing is achieved by changing the image as @MattButlerStudios suggested. Other -
Spawning An Actor 'X' Amount of Times Based On Integer?
by jamie_c ·Set up a Game Level Integer Attribute called Spawn, set it's default value to 4 -
Spawning An Actor 'X' Amount of Times Based On Integer?
by Socks ·In your spawner actor make an attribute . . . . let's call it XXX - And let's say we want to spawn 17 actors. -
Spawning An Actor 'X' Amount of Times Based On Integer?
by SikkJewFro ·Ok, so maybe I am completely derping out here, but is there any way to spawn several of one actor without having to add mulitple "Spawn Actor" Behaviors? My game will eventually allo -
How to Spawn 10 actors around 360 degrees
by Socks ·>>>></font color> Spawn actor X -
How to Spawn 10 actors around 360 degrees
by Simple Apps ·How to Spawn 10 actors around 360 degrees