Unlock an actor when 1 minute has passed
So I have my actor that is a ball. And now I want when one minute has passed, you unlock a new ball and when unlocking a new ball, how do I choose the ball so I play as it? Please explain!
Comments
Two options move actors or spawn them.
I will give you credit within my app!
you need to go into much greater detail of what you're trying to do, how that unlocked ball will be chosen in the game, etc. the information you provided gives too little detail to really help you.
in the timer actor, put a rule that says
every 1 second
gameTime = gameTime + 1
then on the player's ball, put a rule that says
when gameTime = 60
change attribute ballUnlock to True
then on your main menu where you have you're unlockable ball say
when ballUnlock = true
(put whatever code you have to select the new ball here)
http://www.youtube.com/user/GameSaladCookbook
different image? different color? different size? different actor? different position on screen? different movement effect?
how do you want to implement the change? which event will trigger it?
Please be specific with requests, so answers can relate to your problem... and you can use them to solve it!
Explain what you want to do.... what you have tried that didn't work.
MH