|
#81
|
|||
|
|||
|
Quote:
2152 is pretty good for a first run, but you'll find that you'll probably get much further if you keep at it ![]() Cheers! |
|
#82
|
|||
|
|||
|
Thanks so it is in one jump in one game
|
|
#83
|
|||
|
|||
|
So, the new update with Air Bombs. How does everyone feel about it?
|
|
#84
|
|||
|
|||
|
Is anyone else managing to play this on a 3GS? It works, sure, but the game skips a _lot_ -- basically, every time something interesting happens, the game skips for a frame or two.
So it skips when I hit a mine (which has resulted in some very very large jumps, I think because the solver in the simulation engine gets confused). It skips when I do a stunt and the list-of-stunts message gets bigger. It skips when I land a big enough jump that it has to work out the quality of the landing; it the post-game results screen jerks as it appears because it's skipping. Most of this I could live with, but it _always_ skips when I die, and I'm still not sure if it's skipping instantly after I die when it starts to load the smoke animation for dying, or if it's the skipping that causes me to miss the landing and die. Alternatively, is there some way to avoid this? I've tried disabling all notifications and alerts from every other app on the system to make sure it's not background processes, I've tried airplane mode, but no joy. It is frustrating, because I really like the game, I just wish it would play smoothly. |
|
#85
|
|||
|
|||
|
Quote:
we're working on this. For some reason the game got slower with time though we didn't really change much. We are optimizing the game right now and it should be better soon. |
|
#86
|
|||
|
|||
|
Oh, that is awesome news -- thanks!
|
|
#87
|
|||
|
|||
|
New version seems to be smoother, or at least not as prone to causing crashes when it has a hiccup; if I were to guess, I'd say the code change was something like:
Time tNow = GetCurrentRealWorldTime(); Time tDelta = tNew - m_prevFrameTimestamp; tDelta = min(tDelta, 1/30.0); RunSimulationFor(tDelta); m_prevFrameTimestamp = tNow; so that when it does hiccup, the game doesn't have a big jerk in simulation, it just runs a bit slower for that frame. (or perhaps tDelta = (tDelta > 1/30.0) ? 0 : tDelta, to completely pause the simulation during slow frames). I may well be misinterpreting things, though. Either way, it's definitely an improvement -- thanks! |
|
#88
|
|||
|
|||
|
Quote:
Thanks for the feedback, it's always nice to get confirmation that something really worked. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|