Time.delta cleanup / Basic mobile input

This commit is contained in:
Anuken
2020-07-19 12:21:21 -04:00
parent f9ed74c15a
commit a074010eb7
91 changed files with 414 additions and 247 deletions

View File

@@ -63,7 +63,7 @@ public class Universe{
/** Update planet rotations, global time and relevant state. */
public void update(){
secondCounter += Time.delta() / 60f;
secondCounter += Time.delta / 60f;
if(secondCounter >= 1){
seconds += (int)secondCounter;