added some stuff for level select 3d menu

This commit is contained in:
2026-02-07 03:23:45 +11:00
parent 56740c7213
commit 35a0ec30a5
42 changed files with 2617 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class_name FlowFieldEditor
extends Node
@export var flow_field: FlowField
func create_grid(x: int, y: int, gap: int) -> Array[FlowNode]:
#return flow_field.create_grid(x, y, gap)
return []
func create_node(pos: Vector3 = Vector3.ZERO, grid_id: int = -1, grid_x: int = 0, grid_y: int = 0) -> FlowNode:
return flow_field.create_node(pos, grid_id, grid_x, grid_y)