Update
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Agoxandr.Utils.Editor",
|
||||
"rootNamespace": "",
|
||||
"rootNamespace": "Utils",
|
||||
"references": [
|
||||
"GUID:80ed647da8ce73c45b66c239eba0365a"
|
||||
],
|
@ -8,13 +8,13 @@ namespace Utils
|
||||
{
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
EventManager eventManager = (EventManager)target;
|
||||
var eventManager = (EventManager)target;
|
||||
GUILayout.BeginHorizontal();
|
||||
GUILayout.Label("Update");
|
||||
if (Application.isPlaying)
|
||||
{
|
||||
GUILayout.FlexibleSpace();
|
||||
GUILayout.Label(eventManager.UpdateLength.ToString());
|
||||
GUILayout.Label(EventManager.UpdateLength.ToString());
|
||||
}
|
||||
GUILayout.EndHorizontal();
|
||||
GUILayout.BeginHorizontal();
|
||||
@ -22,7 +22,7 @@ namespace Utils
|
||||
if (Application.isPlaying)
|
||||
{
|
||||
GUILayout.FlexibleSpace();
|
||||
GUILayout.Label(eventManager.FixedUpdateLength.ToString());
|
||||
GUILayout.Label(EventManager.FixedUpdateLength.ToString());
|
||||
}
|
||||
GUILayout.EndHorizontal();
|
||||
GUILayout.BeginHorizontal();
|
||||
@ -30,7 +30,7 @@ namespace Utils
|
||||
if (Application.isPlaying)
|
||||
{
|
||||
GUILayout.FlexibleSpace();
|
||||
GUILayout.Label(eventManager.LateUpdateLength.ToString());
|
||||
GUILayout.Label(EventManager.LateUpdateLength.ToString());
|
||||
}
|
||||
GUILayout.EndHorizontal();
|
||||
}
|
||||
|
Reference in New Issue
Block a user