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
UImGui will just not work if RenderGraph is not disabled in Unity 6 with URP.
Also in any case Unity will flood the log with warnings about the fact RecordRenderGraph is not implemented in RenderImGUI.CommandBufferPass (A temporary fix is to override RecordRenderGraph and leave it blank).
The render pass UImGui.Renderer.RenderImGui+CommandBufferPass does not have an implementation of the RecordRenderGraph method. Please implement this method, or consider turning on Compatibility Mode (RenderGraph disabled) in the menu Edit > Project Settings > Graphics > URP. Otherwise the render pass will have no effect. For more information, refer to https://docs.unity3d.com/Packages/com.unity.render-pipelines.universal@latest/index.html?subfolder=/manual/customizing-urp.html.
UnityEngine.GUIUtility:ProcessEvent (int,intptr,bool&)
Thanks!
The text was updated successfully, but these errors were encountered:
I have a Render Graph compatible solution working from my fork, which you can install via https://github.com/charlietran/uimgui.git#ct-updates and read more about at https://github.com/charlietran/uimgui.
Add the UImGui component to your scene and tick the box for "Urp Render Graph Bypass". Do not add the ImGui Render Feature to your pipeline as normally instructed.
Probably not an ideal solution but I was not able to figure out a way to make it work as a Renderer Feature
Hello!
UImGui will just not work if RenderGraph is not disabled in Unity 6 with URP.
Also in any case Unity will flood the log with warnings about the fact RecordRenderGraph is not implemented in RenderImGUI.CommandBufferPass (A temporary fix is to override RecordRenderGraph and leave it blank).
Thanks!
The text was updated successfully, but these errors were encountered: