public GUISpriteSheetClips(OnGUIAction action = null) { if (action != null) { onGUIAction += action; } }
public GUISpriteSheetMaterials(OnGUIAction action = null) { if (action != null) { onGUIAction += action; } }
public GUIToolbar(GUIContent[] itemContent, OnGUIAction action = null) { this.itemContent = itemContent; if (action != null) { onGUIAction += action; } }
public GUIToggle(GUIContent content, OnGUIAction action = null) { _content = content; if (action != null) { onGUIAction += action; } }
public GUIToolbar( GUIContent[] itemContent, OnGUIAction action=null) { this.itemContent = itemContent; if( action != null) { onGUIAction += action; } }
public GUIColorField( GUIContent content, OnGUIAction action=null) { _content = content; if( action != null) { onGUIAction += action; } }
public GUITextureField(GUIContent content, OnGUIAction action = null) { _content = content; if (action != null) { onGUIAction += action; } }
public GUIToggle( GUIContent content, OnGUIAction action=null) { _content = content; if( action != null) { onGUIAction += action; } }
public GUIVector3Field(GUIContent content, OnGUIAction action = null) { _content = content; if (action != null) { onGUIAction += action; } }
public GUITextField(GUIContent content, string value = "", OnGUIAction action = null) { this.value = value; _content = content; if (action != null) { onGUIAction += action; } }
public GUIEnumPopup( GUIContent content, System.Enum value, OnGUIAction action=null) { this.value = value; _content = content; if( action != null) { onGUIAction += action; } }
public GUITextField( GUIContent content, string value="", OnGUIAction action=null) { this.value = value; _content = content; if( action != null) { onGUIAction += action; } }
public GUIEnumPopup(GUIContent content, System.Enum value, OnGUIAction action = null) { this.value = value; _content = content; if (action != null) { onGUIAction += action; } }
public GUIPopup(GUIContent content, GUIContent[] displayedOptions, int selectedIndex = 0, OnGUIAction action = null) { this.displayedOptions = displayedOptions; this.selectedIndex = selectedIndex; _content = content; if (action != null) { onGUIAction += action; } }
public GUIPopup( GUIContent content, GUIContent[] displayedOptions, int selectedIndex=0, OnGUIAction action=null) { this.displayedOptions = displayedOptions; this.selectedIndex = selectedIndex; _content = content; if( action != null) { onGUIAction += action; } }
public GUISlider( GUIContent content, float value=0.0f, float minValue=0.0f, float maxValue=1.0f, OnGUIAction action=null) { this.value = value; this.minValue = minValue; this.maxValue = maxValue; _content = content; if( action != null) { onGUIAction += action; } }
public GUISlider(GUIContent content, float value = 0.0f, float minValue = 0.0f, float maxValue = 1.0f, OnGUIAction action = null) { this.value = value; this.minValue = minValue; this.maxValue = maxValue; _content = content; if (action != null) { onGUIAction += action; } }
public GUIIntSlider( GUIContent content, int value=0, int minValue=0, int maxValue=100, OnGUIAction action=null) { this.value = value; this.minValue = minValue; this.maxValue = maxValue; _content = content; if( action != null) { onGUIAction += action; } }
public GUIIntSlider(GUIContent content, int value = 0, int minValue = 0, int maxValue = 100, OnGUIAction action = null) { this.value = value; this.minValue = minValue; this.maxValue = maxValue; _content = content; if (action != null) { onGUIAction += action; } }
public GUIDelayedIntField(GUIContent content, int value = 0, int minValue = 0, int maxValue = 0, OnGUIAction action = null) { this.value = value; _previousValue = value; this.minValue = minValue; this.maxValue = maxValue; _content = content; if (action != null) { onGUIAction += action; } }
public GUIDelayedIntField( GUIContent content, int value=0, int minValue=0, int maxValue=0, OnGUIAction action=null) { this.value = value; _previousValue = value; this.minValue = minValue; this.maxValue = maxValue; _content = content; if( action != null) { onGUIAction += action; } }
public GUITextureField( GUIContent content, OnGUIAction action=null, OnGUIPreAction preAction=null) { _content = content; if( preAction != null) { onGUIPreAction += preAction; } if( action != null) { onGUIAction += action; } }
public GUIObjectField(GUIContent content, bool allowsSceneObjects = true, OnGUIAction action = null, OnGUIPreAction preAction = null) { _content = content; this.allowsSceneObjects = allowsSceneObjects; if (preAction != null) { onGUIPreAction += preAction; } if (action != null) { onGUIAction += action; } }