From e15f17354df5d2e5548b0cf3064a4b3c419c47f7 Mon Sep 17 00:00:00 2001 From: Areloch Date: Tue, 21 May 2019 01:25:24 -0500 Subject: [PATCH] Added missed lines to init the reflection probe baking gui --- Templates/BaseGame/game/tools/worldEditor/main.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Templates/BaseGame/game/tools/worldEditor/main.cs b/Templates/BaseGame/game/tools/worldEditor/main.cs index 5d337cdf1..fb985b66b 100644 --- a/Templates/BaseGame/game/tools/worldEditor/main.cs +++ b/Templates/BaseGame/game/tools/worldEditor/main.cs @@ -44,6 +44,7 @@ function initializeWorldEditor() exec("./gui/SelectObjectsWindow.ed.gui"); exec("./gui/ProceduralTerrainPainterGui.gui" ); exec("./gui/shadowViz.gui" ); + exec("./gui/probeBakeDlg.gui" ); // Load Scripts. exec("./scripts/menus.ed.cs"); @@ -66,6 +67,7 @@ function initializeWorldEditor() exec("./scripts/cameraCommands.ed.cs"); exec("./scripts/lightViz.cs"); exec("./scripts/shadowViz.cs"); + exec("./scripts/probeBake.ed.cs"); // Load Custom Editors loadDirectory(expandFilename("./scripts/editors"));