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 assert on shutdown #27

Closed Gargaj closed 1 month ago

Gargaj commented 1 month ago

This has been an issue in the original @segross version already - enabling IM_ASSERT will flag an assert on shutdown because 1. it tries to destroy the module before clearing out the contexts, and 2. because the context proxy tick works on an "end frame first, begin new immediately" logic, there's never a final end frame before destruction.