Skip to content

Commit 847956b

Browse files
Rename ScriptExplorer tool to just Scripts
1 parent ff3dc71 commit 847956b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

phoenix.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Tool_Info": false,
1111
"Tool_Materials": false,
1212
"Tool_Properties": true,
13-
"Tool_ScriptExplorer": true,
13+
"Tool_Scripts": true,
1414
"Tool_Settings": false,
1515
"Tool_Shaders": false,
1616
"VSync": false,
-300 Bytes
Binary file not shown.

src/impl/InlayEditor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2902,7 +2902,7 @@ static void recursiveRenderFilesystemNode(FilesystemNode& Node)
29022902

29032903
static void renderFilesViewer()
29042904
{
2905-
if (EngineJsonConfig["Tool_ScriptExplorer"] == false)
2905+
if (EngineJsonConfig["Tool_Scripts"] == false)
29062906
return;
29072907

29082908
std::string name = FilesViewerRoot.Name;
@@ -2912,7 +2912,7 @@ static void renderFilesViewer()
29122912
bool render = ImGui::Begin(std::format("{}###FilesViewer", name).c_str(), &open);
29132913

29142914
if (!open)
2915-
EngineJsonConfig["Tool_ScriptExplorer"] = false;
2915+
EngineJsonConfig["Tool_Scripts"] = false;
29162916

29172917
if (!render)
29182918
{

src/impl/component/EngineService.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ static const std::string_view Tools[] = {
1919
"Tool_Shaders",
2020
"Tool_Settings",
2121
"Tool_Info",
22-
"Tool_ScriptExplorer"
22+
"Tool_Scripts"
2323
};
2424

2525
static std::string checkValidTool(std::string toolName)

0 commit comments

Comments
 (0)