Grid Movement Component
Moving in a grid has never been easier; use this component to access this functionality.
Last updated
Moving in a grid has never been easier; use this component to access this functionality.
Last updated
This component does not inherit from Godot Essentials Motion Component, so it does not have access to this functionality. Grid movement requires its own dedicated logic.
This component can only be used on CharacterBody2D node
When this node enter the scene tree happens multiple things
Snap the body position to align with the TILE_SIZE
and prevent it from remaining in an invalid position.
Connects to moved
signal
Connects to flushed_recorded_grid_movements
signal
"When the move()
function is executed and emits the moved
signal, the component performs the following calculations:
Records the movement in the recorded_grid_movements
array if the maximum recorded grid movements value has not been exceeded.
Increments the movements_count
by 1.
Emits the movements_completed signal
when movements_count
exceeds the emit_signal_every_n_movements
value. The movements_count
is then reset to zero.
If the recorded_grid_movements
array exceeds the max_recorded_grid_movements
value, this array is cleared, and the flushed_recorded_grid_movements
signal is emitted.
Tile size
Max recorded grid movements
Emit signal every 'n' movements
The Tile size this grid based movement, we recommend to be multiples of 2 but nothing happens if you used another tile size dimensions.
The Max recorded grid movements is the number of grid movements recorded before deletion (set to 0 to keep them indefinitely)
The emit signal every n movements is the number of movements to be performed before emitting a signal notification. The signal emitted is movements_completed
body: CharacterBody2D
recorded_grid_movements: Array[Vector2]
movements_count: int
The _default_valid_position_callback
is an internal function that always return true and keep the execution of movement when no custom function is passed as callback.
The fundamental function that moves the character within a grid. It accepts a direction
and a callback function
, which can be used to implement custom functionality for detecting valid grid positions, among other things.
If the callback returns true the movement is done and emit the signal moved
If the callback returns false the movement is not done and emit the signal move_not_valid
Executes a series of sequential moves, utilizing the move()
function internally.
Moves instantly to the target position. The _default_valid_position_callback
always return true
Snap the character to align with a nearby valid vector that maintains consistency with the tile size.
Similar to the previous description, but using the parameter of a specific position.
The result is defined on the next structure:
moved(result: Dictionary)
move_not_valid(result: Dictionary)
flushed_recorded_grid_movements(recorded_movements: Array[Dictionary])
movements_completed(movements: Array[Dictionary])