You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code generation seems to have failed for the methods that are supposed to accept multiple ints, ie.
bool DragInt2(string label, ref int v)
bool DragInt3(string label, ref int v)
bool DragInt4(string label, ref int v)
bool SliderInt2(string label, ref int v, int v_min, int v_max)
bool SliderInt3(string label, ref int v, int v_min, int v_max)
bool SliderInt4(string label, ref int v, int v_min, int v_max)
etc.
I'm assuming they're supposed to accept multiple ints, not a single one, unless I've gravely misunderstood something.
The text was updated successfully, but these errors were encountered:
Alright, thanks for pointing that out. It doesn't really sound very "kosher", though. It should probably accept a span or an array rather than a ref to the first element of the array.
The code generation seems to have failed for the methods that are supposed to accept multiple ints, ie.
bool DragInt2(string label, ref int v)
bool DragInt3(string label, ref int v)
bool DragInt4(string label, ref int v)
bool SliderInt2(string label, ref int v, int v_min, int v_max)
bool SliderInt3(string label, ref int v, int v_min, int v_max)
bool SliderInt4(string label, ref int v, int v_min, int v_max)
etc.
I'm assuming they're supposed to accept multiple ints, not a single one, unless I've gravely misunderstood something.
The text was updated successfully, but these errors were encountered: