Create character and player scripts, import character tilesets

This commit is contained in:
2026-03-27 17:56:45 +01:00
parent 41e86c99da
commit 1a306b53a4
18 changed files with 718 additions and 0 deletions

12
scripts/global.gd Normal file
View File

@@ -0,0 +1,12 @@
extends Node
enum CHARACTERSTATES {
WALK_UP,
WALK_DOWN,
WALK_RIGHT,
WALK_LEFT,
IDLE_UP,
IDLE_DOWN,
IDLE_RIGHT,
IDLE_LEFT
}