cute lil prototype

This commit is contained in:
Tabby 2025-06-28 13:09:15 +10:00
parent 57f147236a
commit 0e4a55d7bd
19 changed files with 305 additions and 2 deletions

11
Prefabs/spinny.gd Normal file
View file

@ -0,0 +1,11 @@
extends RigidBody2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
angular_velocity = randf_range(1,3)
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass