Beispiel #1
0
    public override void DrawInitValueEditor()
    {
        GUI.color = Color.yellow;
        GUILayout.Label("Init Value:");
        GUI.color = Color.white;

        InitValue = GUIDoubleField.DoubleField(InitValue);
    }
Beispiel #2
0
 // Draw GUI
 public override void DrawEditor()
 {
     _double = GUIDoubleField.DoubleField(_double);
 }