Whatever lol
This commit is contained in:
18
overworld/entity/Entity.gd
Normal file
18
overworld/entity/Entity.gd
Normal 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
|
||||
Reference in New Issue
Block a user