small boss progess

This commit is contained in:
Daniel Kauss Serna 2026-04-24 15:23:44 +02:00
parent 986c83ec8f
commit 3f9103b1c8
42 changed files with 769 additions and 54 deletions

View file

@ -1,16 +0,0 @@
class_name Claw extends Sprite2D
func smash():
await get_tree().create_timer(0.8).timeout
var t = create_tween()
t.tween_property(self, "position:y", 0, 0.1);
await t.tween_property(self, "position:y", -80, 1).finished;
func pickup():
await get_tree().create_timer(0.2).timeout
var t = create_tween()
t.tween_property(self, "position:y", 0, 0.4);
await t.tween_property(self, "position:y", -80, 1).finished;