I suggest a way to let us skip forward in the simulation a set amount of time. For example, I could press pause, set the number to 5 frames, hit go, and the game would go forward only 5 frames, still paused. This would be useful for debugging circuitry.
Is this possible, and if it is, would it be implemented?
1 frame stepping would be the easiest to add for now and could be possible, I don't see how you can have a reverse without having insane amounts of RAM usage , fast forward would be impossible as the game already maxes out everyones CPU :p.
ssc4k Awesome. And I figured out my circuitry wasn't working (after half an hour) because my PTCT was right next to my other PTCT, which I thought was NTCT. Netbook screens suck
ssc4k Except that the game would have to calc let's say 5 frames but only draw one, which makes the whole thing slower, but not like it would when you actually draw the 5 frames. On good computers this could actually work. You'd get a pretty low framerate though.
Well I have tried adding a frame-by-frame mode where you hit "0" to enter into it and "+" to increment a frame but I'm running into a problem (maybe a more experienced dev could help me?). I have it run goto "justdraw" if the mode is enabled, i can disabel teh mode fine by pressing "0" but when I press "+" I have it change a global variable then in the particle update loop if that variable was changed it is set to "renderframe" (it's a goto label) but nothing happens and any other function works so I think I'm confused as to how "render frame works".