feat(scene): replace G-key map transition with mouse-click warp & entrance interaction

This commit is contained in:
troytt 2026-09-27 14:26:13 +00:00
parent 1c738c5445
commit bad680600f
3 changed files with 2361 additions and 112 deletions

File diff suppressed because it is too large Load Diff

View File

@ -47,7 +47,7 @@ const LOAD_KEYS = new Set(['KeyL'])
/** Keys that toggle the automap. `Tab` is where Diablo II puts it. */
const MAP_KEYS = new Set(['Tab', 'KeyM'])
/** Keys that take the stairs, cave mouth or portal the player is standing on. */
const USE_KEYS = new Set(['KeyG'])
const USE_KEYS = new Set<string>()
/** Keys that cast a town portal. */
const PORTAL_KEYS = new Set(['KeyP'])
/** Keys that open the waypoint destination list. */

File diff suppressed because it is too large Load Diff