scholar beginnings

This commit is contained in:
Haze Weathers 2025-07-23 17:00:37 -06:00
parent ce2b44b3fa
commit 18eab7176a
69 changed files with 1143 additions and 0 deletions

View file

@ -0,0 +1,17 @@
@tool
extends Fluid2D
@export var height := 10:
set(value):
if height != value:
height = value
points = create_rectangle_points(width, height)
get:
return height
@export var width := 10:
set(value):
if width != value:
width = value
points = create_rectangle_points(width, height)
get:
return width