From df4cc809f402dbba330e11be954d5336cdc540b8 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 06:21:00 -0700 Subject: [PATCH] feat(editor): quest link hint in NPC panel for workflow guidance --- tools/editor/editor_ui.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index d4a0ea67..a151b7ba 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -903,6 +903,11 @@ void EditorUI::renderNpcPanel(EditorApp& app) { ImGui::SliderFloat("Scale", &tmpl.scale, 0.5f, 10.0f, "%.1f"); + // Quick NPC linking for quests + if (app.getQuestEditor().questCount() > 0) { + ImGui::TextColored(ImVec4(0.7f, 0.7f, 0.3f, 1), "Quest link: set as giver/turn-in via Quest panel"); + } + int lvl = tmpl.level; if (ImGui::SliderInt("Level", &lvl, 1, 83)) { tmpl.level = lvl;