com.amanotes.gdk 0.2.73-1 → 0.2.73

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.
@@ -285,11 +285,10 @@ namespace Amanotes.Core.Internal
285
285
 
286
286
  private IEnumerator WaitForMediationCallback()
287
287
  {
288
- #if UNITY_EDITOR
289
- while (!context.hasClosed) yield return null;
290
- yield break;
288
+ #if !UNITY_EDITOR
289
+ while (!isFocus) yield return null;
291
290
  #endif
292
- while (!isFocus) yield return null;
291
+
293
292
  var wait4CallbackCounter = 0;
294
293
  while (!context.potentiallyCompleted && wait4CallbackCounter <= MAX_FRAMES_WAIT_FOR_CALLBACK)
295
294
  {
package/Runtime/AmaGDK.cs CHANGED
@@ -24,7 +24,7 @@ namespace Amanotes.Core
24
24
  {
25
25
  public partial class AmaGDK : MonoBehaviour
26
26
  {
27
- public const string VERSION = "0.2.73-1";
27
+ public const string VERSION = "0.2.73";
28
28
 
29
29
  internal static Status _status = Status.None;
30
30
  private static ConfigAsset _config = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.2.73-1",
3
+ "version": "0.2.73",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2019.4",