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.
- package/Runtime/Ad/AdLogic.cs +3 -4
- package/Runtime/AmaGDK.cs +1 -1
- package/package.json +1 -1
package/Runtime/Ad/AdLogic.cs
CHANGED
|
@@ -285,11 +285,10 @@ namespace Amanotes.Core.Internal
|
|
|
285
285
|
|
|
286
286
|
private IEnumerator WaitForMediationCallback()
|
|
287
287
|
{
|
|
288
|
-
#if UNITY_EDITOR
|
|
289
|
-
while (!
|
|
290
|
-
yield break;
|
|
288
|
+
#if !UNITY_EDITOR
|
|
289
|
+
while (!isFocus) yield return null;
|
|
291
290
|
#endif
|
|
292
|
-
|
|
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
|
|
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;
|