2023-06-12 17:58:06 +02:00
|
|
|
class_name GetRandomTopCellAction
|
2023-06-12 16:48:35 +02:00
|
|
|
extends ActionLeaf
|
|
|
|
|
|
|
|
func tick(actor, _blackboard):
|
|
|
|
var rand_cell: Vector2i = actor.tile_map.get_random_top_cell()
|
|
|
|
actor.tile_map.set_cell(0, Vector2i(rand_cell.x, rand_cell.y), 1, Vector2i(0, 0), 0) # debug purpose
|
|
|
|
|
|
|
|
actor.destination = actor.tile_map.map_to_local(rand_cell)
|
|
|
|
actor.destination.y += actor.y_spawn_offset
|
|
|
|
|
|
|
|
return SUCCESS
|