We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d67ac0 commit f3fb9e4Copy full SHA for f3fb9e4
1 file changed
Packages/com.nuclearband.sodatabase/Runtime/SODatabase.cs
@@ -156,8 +156,11 @@ public static async void Load()
156
157
public static async Task LoadAsync()
158
{
159
- if (!File.Exists(SavePath))
+ if (!File.Exists(SavePath)) {
160
+ foreach (var dataNode in DataNodes(root))
161
+ dataNode.AfterLoad();
162
return;
163
+ }
164
165
using var fileStream = new StreamReader(SavePath);
166
var serializedDictionary = await fileStream.ReadToEndAsync();
0 commit comments