diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index 3596e1f0..261cd430 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -1050,7 +1050,7 @@ void EditorUI::renderMinimap(EditorApp& app) { void EditorUI::renderPropertiesPanel(EditorApp& app) { ImGuiViewport* vp = ImGui::GetMainViewport(); - ImGui::SetNextWindowPos(ImVec2(vp->Size.x - 280, 90), ImGuiCond_FirstUseEver); + ImGui::SetNextWindowPos(ImVec2(vp->Size.x - 280, 90), ImGuiCond_Always); ImGui::SetNextWindowSize(ImVec2(270, 220), ImGuiCond_FirstUseEver); if (ImGui::Begin("Info")) { auto* tr = app.getTerrainRenderer(); diff --git a/tools/editor/npc_spawner.hpp b/tools/editor/npc_spawner.hpp index 2a43d2d9..c4b9f134 100644 --- a/tools/editor/npc_spawner.hpp +++ b/tools/editor/npc_spawner.hpp @@ -40,7 +40,7 @@ struct CreatureSpawn { uint32_t faction = 0; // 0 = neutral // Display - float scale = 1.0f; + float scale = 3.0f; // Behavior CreatureBehavior behavior = CreatureBehavior::Stationary;