action · ui.action.surface
surface.minimap-select
Selects one stable World-grid position from the minimap.
ui.action.surface.minimap-select
- Stable ID
ui.action.surface.minimap-select- Owner
- controls.ControlState
- Authority
- presentation
- Timing
- immediate
- Availability
- Phase 19Q9E spatial interface
- Side effects
- Invokes the package action callback; gameplay requests still use commands.
- Determinism
- Action identity is stable and independent of physical input.
- Introduced
- 1.9.0
Usage
Receive a minimap-selected World cell as row_id and retain a transient camera-centering target for the next composition.
Parameters
- None
Returns
No gameplay value.
Cost
One bounded package action callback and one camera intent.
Fields
This symbol has no fields.
Errors
Examples
function handle_action(action_id, row_id)
if action_id == "ui.action.surface.minimap-select" then
local x, y = string.match(row_id, "^(-?%d+),(-?%d+)$")
end
end
API history
- 1.19.0: Minimap spatial activation added for Phase 19Q9E.