Basic animations for base drone model

This commit is contained in:
2026-02-23 19:35:37 +01:00
parent 969c004153
commit 7200be2e07
64 changed files with 1863 additions and 65 deletions

View File

@@ -0,0 +1,42 @@
enum drone_body_slots{
BRAIN,
LEGS,
BODY,
FUELTANK,
HEAD
}
enum suit_body_slots{
ARMS,
LEGS,
BODY,
HELMET,
FUELTANK,
BACKPACK
}
enum mech_body_slots{
COCKPIT,
LEFT_ARM,
RIGHT_ARM,
RIGHT_LEG,
LEFT_LEG,
CHEST,
BACK,
FUELTANK,
TRUNK
}
enum regular_states{
IDLING,
WALKING,
DASHING,
INTERACTING
}
enum irregular_states{
INVULNERABLE,
OVERCLOCKED,
STUNNED,
SNARRED
}