-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
usability #846
Labels
Enhancement
This issue is about a new feature rather than a bug.
Comments
|
p0nce
pushed a commit
that referenced
this issue
May 5, 2024
…eird D property. This is more in line with UIKnob. See #846
|
This doesn't crash at runtime: static immutable string[] names = ["V1", "V2", "V3"];
params.pushBack( mallocNew!EnumParameter(paramSomething, "MyEnum", names, 1)); But this crash: static immutable string[3] names = ["V1", "V2", "V3"];
params.pushBack( mallocNew!EnumParameter(paramSomething, "MyEnum", names, 1)); find a way to avoid that |
|
|
|
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
double
doesn't exist, despite parameters being double internallySpecifically:
setFromGUINormalized
is a public API that exists forIntegerParameter
andFloatParameter
Calling them with out of [0 .. 1] should clamp them, but also create a debug time assertion, instead of just having the debug time assertion. It is because the primary user for this call is sliders and knobs of all sort, who maintain complicated dragging invariants. Now outside 0 to 1 is allowed.
sensitivity
as a property, instead of a Wren-accessible script property (variable), which isn't same as UIKnob. Change that to regular variable.The text was updated successfully, but these errors were encountered: