initial commit

This commit is contained in:
2026-07-04 18:22:23 -06:00
commit 55522fc6fc
272 changed files with 12391 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
extends Control
var mesh: QuadMesh
# Called when the node enters the scene tree for the first time.
func set_mesh(new_mesh: Mesh):
mesh = new_mesh
func _on_add_width_pressed() -> void:
mesh.size = Vector2(mesh.size.x + 20, mesh.size.y)
func _on_subtract_width_pressed() -> void:
mesh.size = Vector2(max(20, mesh.size.x - 20), mesh.size.y)
func _on_add_height_pressed() -> void:
mesh.size = Vector2(mesh.size.x, mesh.size.y + 20)
func _on_subtract_height_pressed() -> void:
mesh.size = Vector2(mesh.size.x, max(20, mesh.size.y - 20))