feat(editor): heightmap export, help overlay, keyboard reference

- Export Heightmap: File > Export Heightmap saves terrain as 16-bit
  RAW grayscale (129x129) for use in external terrain editors or
  as a backup. Configurable max height scale.
- Help overlay (F1 or Help menu): lists all keyboard shortcuts
  organized by category (navigation, editing, object transform, view)
- Round-trip heightmap workflow: import → edit → export
This commit is contained in:
Kelsi 2026-05-05 04:52:36 -07:00
parent 2f96f112bd
commit 89312120f4
5 changed files with 85 additions and 1 deletions

View file

@ -39,6 +39,7 @@ private:
bool showNewDialog_ = false;
bool showLoadDialog_ = false;
bool showSaveDialog_ = false;
bool showHelp_ = false;
char newMapNameBuf_[256] = "CustomZone";
int newTileX_ = 32;