added support for obstacles to levels again

This commit is contained in:
2026-02-07 04:29:19 +11:00
parent 35a0ec30a5
commit f7e478357b
19 changed files with 49 additions and 43 deletions

View File

@@ -342,3 +342,8 @@ func select_in_grid(grid: int) -> void:
for node: FlowNode in flow_field.nodes:
if node.grid_id == grid:
selected.append(node)
func _on_print_ids_pressed() -> void:
for node: FlowNode in selected:
print(node.node_id)