SFML/imgui-sfml

Is there any possibility to scale up whole UI?

Patys opened this issue · 1 comments

Patys commented

How I can scale up all the GUI? Applying sf::View to window doesn't make any changes :/

See this: ocornut/imgui#436

Applying view to window doesn't change anything, because rendering function is not using Views for transforms - it'll be pretty resource intensive. And you also need to remember that if you scale the UI, ImGui needs to somehow now that all widgets now have differently sized collision boxes...

So, it's not ImGui-SFML issue - it's a Dear ImGui issue.