export variable for access in editor

This commit is contained in:
aaron
2026-01-02 17:33:50 +01:00
parent 6431603630
commit e69ffeef7c
2 changed files with 4 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ extends Control
var grid: AStarGrid2D:
set(v): grid = v; queue_redraw()
var show_grid_display: bool:
@export var show_grid_display: bool:
set(v): show_grid_display = v; queue_redraw()
func toggle_grid_display(on: bool):