From 75c83f4d7a628077d9ec98bfbd674699bfa20529 Mon Sep 17 00:00:00 2001 From: Sophia Pearson Date: Wed, 20 May 2026 09:39:22 +0200 Subject: initial gdscript rewrite --- components/astronaut.gd | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 components/astronaut.gd (limited to 'components/astronaut.gd') diff --git a/components/astronaut.gd b/components/astronaut.gd new file mode 100644 index 0000000..89e0f0d --- /dev/null +++ b/components/astronaut.gd @@ -0,0 +1,8 @@ +extends Node2D + +@onready var _sprite = $Sprite + +func _ready() -> void: + _sprite.animation = "stand" + _sprite.frame = 0 + _sprite.stop() -- cgit v1.2.3