-
Enemy Movement AI
by RThurman ·To make an actor point in the direction it is traveling, use a constrain behavior: -
Enemy Movement AI
by quinn221 ·platform game, but can't wrap my head around on how to do it for a top down game. I want to make sure the enemy is facing the correct direction when chasing the hero...in all 4 directions. -
On Off Button
-
My Little Place - New update with new mini-game!
by Icebox ·I like your style looks really nice ! wish you the best (Image) -
How to make a ball stay inside a circle(pic)
by Armelline ·This is fantastically clever. Kudos to both of you. -
Timer vs Loop
by Armelline ·If it's something you want to run forever, and you're spawning at a set frequency (i.e. 0.1s), then timers are better for your purpose. If you wanted to spawn 1000 enemies as fast as possible, then yo -
How to keep high score on ALL scenes?
by Armelline ·That really depends on what you're trying to do! It looks like you're wanting to display the high score on the "High Score" scene you use, so the "High Scoreee" act -
How to keep high score on ALL scenes?
by GoodnightMoon ·Thank you for getting back to me ^_^ -
How to keep high score on ALL scenes?
by Armelline ·Your High Score is actually saved between scenes, as you intend. The High Score functionality is working as you seem to intend. What you seem to be doing is on the "High Score" scene -
How to keep high score on ALL scenes?
by Adrenaline ·(Quote) -
How to keep high score on ALL scenes?
by Armelline ·Having taken a very brief look, I think you're trying to solve the wrong problem here. You're trying to fix the high score problem, but the extra scenes seem unnecessary. If you keep the game to one g -
How to keep high score on ALL scenes?
by Adrenaline ·Hmmm...sorry to hear that. Maybe you could attach a version of your project and someone else here could dive in to see what's going on. We have plenty of helpful people who do that regularly. -
How to make a ball stay inside a circle(pic)
by dprobo5@gmail.com ·how to make ball collide with inner diameter of the circle -
Timer vs Loop
by NNterprises ·Sorry, another thing. When using the loops do you NEED a while constrain? -
Timer vs Loop
by Socks ·(Quote) -
Stable Release 1.25.54 is Available
by KnightStar ·(Quote) -
Timer vs Loop
by Socks ·This timer will run throughout your game regardless of whether there are any enemies near you or not or whether you are dead or not. -
Timer vs Loop
by NNterprises ·If there aren't any enemies near you and you are not dead -
Timer vs Loop
by Armelline ·You performance probably would go up if you shifted to loops, but it'll depend on exactly what you're using where and how. -
Timer vs Loop
by Icebox ·the frames allows you to set how many times the loop can run per frame.