My first 2D game in Godot 4.4

This commit is contained in:
2025-08-18 19:39:33 -04:00
commit 35600f72f9
83 changed files with 2512 additions and 0 deletions

10
characters/slime/slime.gd Normal file
View File

@@ -0,0 +1,10 @@
extends Node2D
func play_walk():
%AnimationPlayer.play("walk")
func play_hurt():
%AnimationPlayer.play("hurt")
%AnimationPlayer.queue("walk")