com.amanotes.gdk 0.2.81-alpha.11 → 0.2.81-alpha.12

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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/Runtime/AmaGDK.cs CHANGED
@@ -27,7 +27,7 @@ namespace Amanotes.Core
27
27
  {
28
28
  public partial class AmaGDK : MonoBehaviour
29
29
  {
30
- public const string VERSION = "v0.2.81-alpha.11";
30
+ public const string VERSION = "v0.2.81-alpha.12";
31
31
 
32
32
  internal static Status _status = Status.None;
33
33
  internal static ConfigAsset _config = null;
@@ -100,7 +100,7 @@ namespace Amanotes.Core
100
100
  public static void Log(string message)
101
101
  {
102
102
  if (AmaGDK.logLevel < LogLevel.Verbose) return;
103
- using (NoStackTrace.Log)
103
+ using (GDKUtils.isOnMainThread ? NoStackTrace.Log: NoStackTraceNull)
104
104
  {
105
105
  Debug.Log($"AmaGDK {message}");
106
106
  }
@@ -108,7 +108,7 @@ namespace Amanotes.Core
108
108
 
109
109
  public static void ForceLog(string message)
110
110
  {
111
- using (NoStackTrace.Log)
111
+ using (GDKUtils.isOnMainThread ? NoStackTrace.Log: NoStackTraceNull)
112
112
  {
113
113
  Debug.Log($"AmaGDK {message}");
114
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.2.81-alpha.11",
3
+ "version": "0.2.81-alpha.12",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2019.4",