Fish Cascade WIP added

This commit is contained in:
GitCosm0s
2026-02-10 18:29:46 -05:00
parent 3042bb93c7
commit f49239b095
16 changed files with 352 additions and 2 deletions

16
scenes/game/fish_tux.gd Normal file
View File

@@ -0,0 +1,16 @@
extends AnimatedSprite2D
var speed = 10
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
play('stand')
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass
func movetofish(loc):
Vector2(loc, 660)