fix(editor): update speed hint to show Shift+scroll

This commit is contained in:
Kelsi 2026-05-05 05:45:17 -07:00
parent 12acbfb2d5
commit 2b0a81fd9a

View file

@ -1201,7 +1201,7 @@ void EditorUI::renderPropertiesPanel(EditorApp& app) {
ImGui::Separator();
auto pos = app.getEditorCamera().getCamera().getPosition();
ImGui::Text("Camera: %.0f, %.0f, %.0f", pos.x, pos.y, pos.z);
ImGui::Text("Speed: %.0f (scroll)", app.getEditorCamera().getSpeed());
ImGui::Text("Speed: %.0f (Shift+scroll)", app.getEditorCamera().getSpeed());
// Cursor world position
auto& brush = app.getTerrainEditor().brush();