Skip to content

Instantly share code, notes, and snippets.

@fuqunaga
Last active February 6, 2019 06:36
Show Gist options
  • Save fuqunaga/0f90be8ef7f538c6882d22eac5472f41 to your computer and use it in GitHub Desktop.
Save fuqunaga/0f90be8ef7f538c6882d22eac5472f41 to your computer and use it in GitHub Desktop.
Log10Slider
float Log10Slider(float v, float min, float max, string label)
{
using (new GUILayout.HorizontalScope())
{
GUILayout.Label(label);
var log = GUILayout.HorizontalSlider(Mathf.Log10(v), Mathf.Log10(min), Mathf.Log10(max), GUILayout.MinWidth(200f));
v = Mathf.Pow(10, log);
v = GUIUtil.Field(v);
}
return v;
}
@fuqunaga
Copy link
Author

fuqunaga commented Feb 6, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment