Tagged Questions
4
votes
2answers
197 views
How to store the state of the world for a fixed time step?
Most of the posts on fixed time steps say something like this:
State previous;
State current;
while ( !quit )
{
double newTime = time();
double frameTime = newTime - currentTime;
if ( ...
4
votes
5answers
221 views
Flash Game not working on Android
I am not sure if I will be able to provide enough information for someone to answer this question, but any ideas might help.
I am creating a tower defense game in Flash and I eventually want to make ...
1
vote
2answers
181 views
Flash Custom Events
I am working on a Flash Tower Defense game. I have a main game loop which is an eventListener for each frame. Whenever you gain money or lose a life, I want the GameUI to be updated to display this ...