Skip to content

Instantly share code, notes, and snippets.

@Tak
Created December 14, 2018 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tak/33a7ad0b76e2c397c6d3ab33d9c4a3a7 to your computer and use it in GitHub Desktop.
Save Tak/33a7ad0b76e2c397c6d3ab33d9c4a3a7 to your computer and use it in GitHub Desktop.
class MyEditor
{
int sliderValue = 0;
int sliderMin = 0;
int sliderMax = 15;
void OnInspectorGUI()
{
sliderValue = EditorGUILayout.IntSlider(sliderValue, sliderMin, sliderMax);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment