-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blackscreen on resume in Android #10
Comments
Hi, I am facing same issue. Please provide any solution to fix this. I just want a clue to fix it and rest I will do myself. I am waiting for reply. |
Hi, just make a 0 check where you have division by delta. public void render(delta){
} Br Metin On Mon, Apr 18, 2016 at 9:22 AM, Md Mohsin [email protected] wrote:
|
But every time delta will be greater than 0. when game resume than it start from 0 or previous delta value? and how we can resume all previous state. Thanks for your reply. |
the game keeps its state, it will try to resume and instead of asking me On Mon, Apr 18, 2016 at 10:20 AM, Md Mohsin [email protected]
|
When the menu button is pressed the app goes to the background. Then if the app is resumed, map and bob textures will not be rendered. This is caused by a NaN value in Bobs pos. When the app is resumed the first delta received is 0.0 and since there is a division by delta this will produce a NaN.
The text was updated successfully, but these errors were encountered: