mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-15 05:43:47 +00:00
Camera debug fix
This commit is contained in:
parent
ca85765ca2
commit
7ebbc207e6
1 changed files with 6 additions and 2 deletions
|
|
@ -303,11 +303,15 @@ public partial class DebugGUI : Control
|
||||||
|
|
||||||
if (Settings.enableGraphs)
|
if (Settings.enableGraphs)
|
||||||
{
|
{
|
||||||
AddChild(graphWindow = new());
|
CanvasLayer canvasLayer = new();
|
||||||
|
canvasLayer.AddChild(graphWindow = new());
|
||||||
|
AddChild(canvasLayer);
|
||||||
}
|
}
|
||||||
if (Settings.enableGraphs)
|
if (Settings.enableGraphs)
|
||||||
{
|
{
|
||||||
AddChild(logWindow = new());
|
CanvasLayer canvasLayer = new();
|
||||||
|
canvasLayer.AddChild(logWindow = new());
|
||||||
|
AddChild(canvasLayer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue