-
Remembering a Spawn Actor
by laduester42 ·I have it so "when game.Word is 77, spawn actor 'checkmark' in this location". This works, but when you click on the next picture to continue the game, it of course resets " -
★★★ DBA Explosion Gen 3 Available for Mac and Win ★★★
by creativeapps ·Great work as always. @DeepBlueApps.com always making something unique. Wish one day I become part of their teams.. (Image) -
Change Size AND Collide?
by hambuerger7 ·While testing, I have a rule that says after .01 seconds change velocity to 300 and change size at -.5. When it collides with another actor it is supposed to destroy and spawn new actor, but it immedi -
Saving spawned actors locations.
by tatiang ·Take a look at this discussion: https://forums.gamesalad.com/discussion/55407/need-help-spawn-actor-and-save-all-new-spawned-actor-position-table-how-to -
★★★ Xmas Invaders FREE Template from DBA ★★★
by UtopianGames ·Don't forget if you download our free resource centre unique to DBA you get everything in one place so you don't have to search around. -
game-time updates instead of constraints?
by themagicbox ·There's a template for bejeweled games and I downloaded it...it's what're closest to what I would need but I dont need actors to spawn on top when some are destroyed....I feel like the that may be imp -
★★★ Little Viking Dungeon Of Doom ★★★
by UtopianGames ·Its Universal using our own method and has a nice unique play style and uses tables for everything. -
stretch actor
by wollty ·or maybe use the spawn? -
Endless Platform
by selectsoft ·As long as you destroy actors that are no longer in use, spawning isn't all that much of a problem. -
Question about the ram on IOS
-
Endless Platform
by kinzua ·@ahmetyuce if you want to do an endless.. u would not want to build up on RAM usage. So avoid spawn.. and reuse your actors. For e.g... have two of them and make them keep coming in a loop. -
Endless Platform
by jamie_c ·keep track of the platforms X location, and when it's right edge is at the right edge of the scene, spawn a new platform that starts at the 'old' platforms right edge (assuming your platform is moving -
My Game Coming Soon - Zombies Ate My Mother
by charliehgreen ·Each level has a unique Boss and a cool banner made to show off their looks before hand -
how to make player only have certain number of bullets to shoot?
by tatiang ·[spawn shootingBullet actor] -
Enemy help
by tatiang ·(Quote) -
Enemy help
-
"Tiles" won't place past the screen size of 560x320 even though the canvas is 1000x1000?
by Peter_J ·So, I'm in the process of creating a city building game. The user clicks to spawn 32x32 size buildings(etc) to construct their city. My issue is that the tiles will not spawn past the "560x32 -
Enemy help
by The_Gamesalad_Guru ·Put an attribute in your spawn rule that says when enemy count is < the max amount spawn actor and also count them as @tatiang describes and it will stop spawning when the count goes to the max -
Enemy help
-
Enemy help
by tatiang ·It sounds like what you want is When game.enemyCount < game.EnemiesForThisLevel, then spawn a new enemy. In your enemy actor, have Change Attribute game.enemyCount to game.enemyCount+1. You d