Whatever lol

This commit is contained in:
2026-01-07 21:08:05 -06:00
parent 5805ac2260
commit fff088a0a7
72 changed files with 526 additions and 167 deletions

View File

@@ -0,0 +1,18 @@
class_name Entity extends CharacterBody3D
enum MovementType {
NONE,
DISABLED,
PLAYER
}
enum InteractType {
NONE,
};
# Movement settings
@export var movementType:MovementType = MovementType.NONE
# Interaction settings
@export var interactType:InteractType = InteractType.NONE