mirror of
https://github.com/Relintai/pandemonium_paint_experimental.git
synced 2024-11-12 01:55:00 +01:00
10 lines
143 B
GDScript
10 lines
143 B
GDScript
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)
|
|
|