Added early update event.

This commit is contained in:
2023-12-16 16:32:47 +01:00
parent 8dcb16073c
commit 5991e60e7a
3 changed files with 23 additions and 1 deletions

View File

@ -33,6 +33,14 @@ namespace Utils
GUILayout.Label(EventManager.LateUpdateLength.ToString());
}
GUILayout.EndHorizontal();
GUILayout.BeginHorizontal();
GUILayout.Label("EarlyUpdate");
if (Application.isPlaying)
{
GUILayout.FlexibleSpace();
GUILayout.Label(EventManager.EarlyUpdateLength.ToString());
}
GUILayout.EndHorizontal();
}
}
}