File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 1717</p >
1818
1919## What
20+
21+ ``` mermaid
22+ flowchart LR
23+ Unity.Serialization{Unity.Serialization} --> W(Write) & R(Read)
24+ click Unity.Serialization "https://docs.unity3d.com/Packages/[email protected] /manual/index.html" _blank 25+ Data[("Data <br> Profile 0<br>.<br>.<br>.<br> Profile N <br> Dictionary<string,byte[]>")] --> |Default use profile 0| ChangeProfile(ChangeProfile)
26+ Data --> |Auto save on Application pause or quit| SaveToFile(SaveToFile)--> Unity.Serialization
27+ Data --> |Auto load when startup| LoadFromFile(LoadFromFile)--> Unity.Serialization
28+ Data --> Get(Get<T>) & Set(Set<T>) & DeleteKey(DeleteKey) & HasKey(HasKey) & DeleteAll(DeleteAll)
29+ File{{File Data}} --- W & R
30+ ```
31+
2032- System data for game unity (Unity 2022.3)
2133- Using
[ Unity.Serialization
] ( https://docs.unity3d.com/Packages/[email protected] /manual/index.html ) to serialize binary data
2234- Data allows you to store data in byte[ ] form in blocks called profiles. Each profile is a Dictionary with the key as a string and the value
You can’t perform that action at this time.
0 commit comments