fr.jeanf.questsystem 0.0.52 → 0.0.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -136,7 +136,8 @@ namespace jeanf.questsystem
136
136
  #endif
137
137
 
138
138
 
139
- public bool isDebug { get; set; }
139
+ public bool isDebug { get => _isDebug; set => _isDebug = value; }
140
+ private bool _isDebug = true;
140
141
 
141
142
  public QuestStepStatus GetStatus()
142
143
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"fr.jeanf.questsystem",
3
- "version":"0.0.52",
3
+ "version":"0.0.53",
4
4
  "displayName":"Quest system",
5
5
  "description":"This package uses Scriptable Objects to define quests.",
6
6
  "unity": "2021.3",