Skip to content

Commit d21d6d8

Browse files
committed
Add persistence to IntVariables
1 parent fdfef81 commit d21d6d8

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

Variables/IntVariable.cs

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1-
using UnityEngine;
1+
using Sirenix.OdinInspector;
2+
using UnityEngine;
23

34
namespace TinyMatter.Core {
45

56
[CreateAssetMenu(menuName = "Variables/Int")]
67
public class IntVariable : BaseVariable<int> {
8+
[SerializeField] public bool persistValue;
9+
10+
[Button]
11+
[ShowIf("persistValue")]
12+
public void ResetPersistentValue() {
13+
PlayerPrefs.DeleteKey(name);
14+
}
15+
16+
protected override void ValueChanged() {
17+
if (persistValue) {
18+
PlayerPrefs.SetInt(name, Value);
19+
}
20+
}
21+
722
public void Increment(int amount = 1) {
823
SetValue(Value + amount);
924
}

0 commit comments

Comments
 (0)