omar
omar
This is better (although IMHO angle should be in float/radian) but now you'll notice you don't really need any of those functions to be in Dear ImGui codebase you can...
I already answer that this is likely better added in your code, it is a single function to add.
I already answer that this is likely better added in your code, it is a single function to add.
Thanks! Linking to #1901 If you can extract a 500x250 screenshots it can be added to https://github.com/ocornut/imgui/wiki/Useful-Extensions
That's not a 500x250 screenshot and it doesn't meaningfully show all spinner types.
For "mixed value" display you can use this WIP feature ``` PushItemFlag(ImGuiItemFlags_MixedValue, true); DragFloat(...) PopItemFloat() ```
Hmm you are right, it doesn’t look like I finished the equivalent code for Drag/Sliders.
This is currently not supported, but you could wrap the text yourself. You may use the same logic as used in the lower-level text functions. In some cases you could...
It would seem appropriate to post this in #718 instead of opening a new thread. AFAIK this is the same topic?
I have refactored some code in a58271c07 to make this easier, you can now use `BeginViewportSideBar()` (in imgui_internal.h so technically not documented/guaranteed, but simpler/better than snippet above and more likely...