Skip to content

Commit b510aa2

Browse files
committed
Fixes part 2
1 parent 2d80795 commit b510aa2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Runtime/SaveSystemObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public string GetPath()
120120

121121
private IEnumerable<ISaveable> GetObjectsForSave()
122122
{
123-
return FindObjectsOfType<MonoBehaviour>().OfType<ISaveable>();
123+
return FindObjectsOfType<MonoBehaviour>(true).OfType<ISaveable>();
124124
}
125125

126126
private IEnumerator AutosavingRoutine(float period)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.tarask8.save-system",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"displayName": "Save System",
55
"description": "This is a simple save system for unity.",
66
"unity": "2022.3",

0 commit comments

Comments
 (0)