EditorGUILayout.IntSliderstatic function IntSlider (value : int, leftValue : int, rightValue : int, params options : GUILayoutOption[]) : intstatic function IntSlider (label : String, value : int, leftValue : int, rightValue : int, params options : GUILayoutOption[]) : intstatic function IntSlider (label : GUIContent, value : int, leftValue : int, rightValue : int, params options : GUILayoutOption[]) : intParameters
Returnsint - The value that has been set by the user. DescriptionMake a slider the user can drag to change an integer value between a min and a max.
// Simple editor script that lets you clone your object in a grid
static function IntSlider (property : SerializedProperty, leftValue : int, rightValue : int, params options : GUILayoutOption[]) : voidstatic function IntSlider (property : SerializedProperty, leftValue : int, rightValue : int, label : String, params options : GUILayoutOption[]) : voidstatic function IntSlider (property : SerializedProperty, leftValue : int, rightValue : int, label : GUIContent, params options : GUILayoutOption[]) : voidParameters
DescriptionMake a slider the user can drag to change an integer value between a min and a max. |

