fr.jeanf.questsystem 0.0.14 → 0.0.16

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.
@@ -32,12 +32,12 @@
32
32
  {
33
33
  if (id == string.Empty || id == null) GenerateId();
34
34
  }
35
- #endif
36
35
 
37
36
  public void GenerateId()
38
37
  {
39
38
  id = $"{System.Guid.NewGuid()}";
40
39
  UnityEditor.EditorUtility.SetDirty(this);
41
40
  }
41
+ #endif
42
42
  }
43
43
  }
@@ -44,13 +44,13 @@ namespace jeanf.questsystem
44
44
  public void OnValidate()
45
45
  {
46
46
  #if UNITY_EDITOR
47
- ValididtyCheck();
47
+ ValidityCheck();
48
48
  #endif
49
49
 
50
50
  questId = questInfoForPoint.id;
51
51
  }
52
52
 
53
- private void ValididtyCheck()
53
+ private void ValidityCheck()
54
54
  {
55
55
  const string searching = "attempting to find";
56
56
  const string _ = "Quests/Channels"; // search target
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"fr.jeanf.questsystem",
3
- "version":"0.0.14",
3
+ "version":"0.0.16",
4
4
  "displayName":"Quest system",
5
5
  "description":"This package uses Scriptable Objects to define quests.",
6
6
  "unity": "2021.3",