Beispiel #1
0
 /// <summary>Displays a box with the wind values from the current WindController</summary>
 public static void DrawWindInfo()
 {
     EditorGUILayout.Space();
     EditorGUILayout.LabelField("Global wind settings", EditorStyles.boldLabel);
     GUIHelper.ProgressBar(WindController._windStrength, 1f, "Strength");
     GUIHelper.ProgressBar(WindController._windAmplitude, 32f, "Amplitude");
     EditorGUILayout.Space();
 }