mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-06 09:03:52 +00:00
feat(editor): quest link hint in NPC panel for workflow guidance
This commit is contained in:
parent
673cfa6368
commit
df4cc809f4
1 changed files with 5 additions and 0 deletions
|
|
@ -903,6 +903,11 @@ void EditorUI::renderNpcPanel(EditorApp& app) {
|
||||||
|
|
||||||
ImGui::SliderFloat("Scale", &tmpl.scale, 0.5f, 10.0f, "%.1f");
|
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;
|
int lvl = tmpl.level;
|
||||||
if (ImGui::SliderInt("Level", &lvl, 1, 83)) {
|
if (ImGui::SliderInt("Level", &lvl, 1, 83)) {
|
||||||
tmpl.level = lvl;
|
tmpl.level = lvl;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue