brackeys-12/components/Persister/data_scope.gd

12 lines
347 B
GDScript3
Raw Normal View History

2024-09-08 17:34:41 +00:00
class_name PersisterEnums
enum Scope {
PERMANENT, # Stays forever
SAVE, # Persists through a save
GAME, # Persists through runs
RUN, # Persists through an entire run of the game
ROUND, # Persists through a round (if applicable, e.g. between ifa round is 2 mins between shops)
ROOM, # Persists within a game room (if applicable)
UNKNOWN
}