mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 23:10:08 +01:00
16 lines
148 B
GDScript
16 lines
148 B
GDScript
## Global enums.
|
|
class_name Enums
|
|
|
|
enum TimeType {
|
|
FILTERED,
|
|
RAW,
|
|
}
|
|
|
|
enum HitType {
|
|
MISS_EARLY,
|
|
GOOD_EARLY,
|
|
PERFECT,
|
|
GOOD_LATE,
|
|
MISS_LATE,
|
|
}
|