For game play’s there is really no API to reset the app. You will need to write your own reset function that resets the game play but the score.
you can have something like
gameReset()
sheep.x = 0;
scissors.location = 0;
....etc.
end
And then you can have another function to reset all including gamescore
gameResetAll()
gameReset()
gameScore = 0;
gameTextScore = 0
end
Just using pseudo code to give you an idea.
Look in the Samurai Kitchen example when the program ends… just don’t reset the game score…
carlos [import]uid: 24 topic_id: 3137 reply_id: 9198[/import]