mirror of
https://github.com/Relintai/pandemonium_paint_experimental.git
synced 2024-11-07 16:52:10 +01:00
10 lines
143 B
GDScript3
10 lines
143 B
GDScript3
|
tool
|
||
|
extends PaintVisualGrid
|
||
|
|
||
|
export(int) var grid_size : int = 1 setget set_gs
|
||
|
|
||
|
func set_gs(var n) -> void:
|
||
|
grid_size = n
|
||
|
set_grid_size(n)
|
||
|
|