Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 9aee226

Browse files
committed
fix: ResetOnPlay
1 parent 0426bc4 commit 9aee226

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

Assets/AddressableAssetsData/AddressableAssetSettings.asset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ MonoBehaviour:
2626
- {fileID: 11400000, guid: f0364c80bdd4e0648af018bca9793a3f, type: 2}
2727
- {fileID: 11400000, guid: d3e743121d5fc7442a1e4d4b7a9459cd, type: 2}
2828
- {fileID: 11400000, guid: 6da666d6e152bbe49a39f368bf1b1e7e, type: 2}
29+
- {fileID: 11400000, guid: dc4d41671dc97ef41957b064bbd68590, type: 2}
2930
m_BuildSettings:
3031
m_CompileScriptsInVirtualMode: 0
3132
m_CleanupStreamingAssetsAfterBuilds: 1

Packages/com.nuclearband.sodatabase/Runtime/DataNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class DataNode : SerializedScriptableObject
1010
protected virtual void OnEnable()
1111
{
1212
var typeInfo = GetType().GetTypeInfo();
13-
var fields = typeInfo.GetFields(BindingFlags.NonPublic | BindingFlags.Instance);
13+
var fields = typeInfo.GetFields(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
1414
foreach (var field in fields)
1515
{
1616
var attributes = field.GetCustomAttributes(typeof(ResetOnPlay), false);

Packages/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
"com.unity.2d.sprite": "1.0.0",
77
"com.unity.2d.spriteshape": "5.0.0",
88
"com.unity.2d.tilemap": "1.0.0",
9-
"com.unity.addressables": "1.9.2",
9+
"com.unity.addressables": "1.11.2",
1010
"com.unity.ide.rider": "2.0.5",
1111
"com.unity.ide.visualstudio": "2.0.2",
1212
"com.unity.ide.vscode": "1.2.1",
1313
"com.unity.nuget.newtonsoft-json": "2.0.0",
14-
"com.unity.test-framework": "1.1.14",
15-
"com.unity.textmeshpro": "3.0.0-preview.14",
16-
"com.unity.timeline": "1.4.0",
14+
"com.unity.test-framework": "1.1.16",
15+
"com.unity.textmeshpro": "3.0.1",
16+
"com.unity.timeline": "1.4.1",
1717
"com.unity.ugui": "1.0.0",
1818
"com.unity.modules.ai": "1.0.0",
1919
"com.unity.modules.androidjni": "1.0.0",

ProjectSettings/ProjectVersion.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2020.2.0a15
2-
m_EditorVersionWithRevision: 2020.2.0a15 (86048ae4b4bd)
1+
m_EditorVersion: 2020.2.0a19
2+
m_EditorVersionWithRevision: 2020.2.0a19 (8037ac78137e)

0 commit comments

Comments
 (0)