IDI-Systems / UnrealImGui

Unreal plug-in that integrates Dear ImGui framework into Unreal Engine 4/5.
MIT License
121 stars 27 forks source link

Fix ImGui not working when Slate Global Invalidation is enabled #2

Closed DoubleDeez closed 12 months ago

DoubleDeez commented 12 months ago

With Imgui being immediate mode, it needs to re-render every frame but Slate Global Invalidation will only re-render widgets when they invalidate or if they are volatile, so this change makes the ImGui widget volatile.

jonpas commented 12 months ago

Thanks!