com.amanotes.gdk 0.1.17 → 0.1.18

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.18 - 2023-03-27]
4
+ ### Fix AmaGDK's autoInit saving issue
5
+
3
6
  ## [0.1.17 - 2023-03-13]
4
7
  ### Release AmaGDK v0.1.17
5
8
  ### Rename Analytics APIs
@@ -81,6 +81,7 @@ namespace Amanotes.Editor
81
81
  if (sdk.autoInit)
82
82
  {
83
83
  Toggle("Auto Init", ref sdk.autoInit);
84
+ EditorUtility.SetDirty(sdk);
84
85
  return;
85
86
  }
86
87
 
Binary file
Binary file
package/Runtime/AmaGDK.cs CHANGED
@@ -12,7 +12,7 @@ namespace Amanotes.Core
12
12
  {
13
13
  public partial class AmaGDK : MonoBehaviour
14
14
  {
15
- public const string VERSION = "0.1.17";
15
+ public const string VERSION = "0.1.18";
16
16
 
17
17
  internal static AmaGDK _instance;
18
18
  internal static event Action _frameUpdate;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2020.3",