Skip to content

DataStorageAsset

ScriptableObject wrapper for a DataStorage, shareable across scenes and components.

Namespace: Jungle.Data
Inherits: ValueAsset<DataStorage>

Overview

DataStorageAsset is a ScriptableObject that holds a DataStorage instance. Create one in the Project window to share key-value data across scenes and components. Multiple systems can reference the same asset to read and write shared data using Key lookups.

Properties

Property Type Description
dataStorage DataStorage The underlying key-value data store.

See Also