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
+22
View File
@@ -0,0 +1,22 @@
extends Control
var mesh: SphereMesh
# Called when the node enters the scene tree for the first time.
func set_mesh(new_mesh: Mesh):
mesh = new_mesh
func _on_add_pressed() -> void:
if mesh == null:
return
mesh.radius += 10
mesh.height += 20
func _on_subtract_pressed() -> void:
if mesh == null:
return
mesh.radius = max(10, mesh.radius - 10)
mesh.height = max(20, mesh.height - 20)