GodotVR/components/persistent/persistent.gd
2025-10-08 11:10:13 +02:00

17 lines
360 B
GDScript

class_name Persistent
## Persistent script
##
## This script defines constants used in the persistence system.
## Notification to trigger loading state
const NOTIFICATION_LOAD_STATE := 57001
## Notification to trigger saving state
const NOTIFICATION_SAVE_STATE := 57002
## Notification to trigger destruction of items
const NOTIFICATION_DESTROY := 57003