com.amanotes.gdk 0.2.27 → 0.2.28

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.2.28 - 2023-11-01]
4
+ - Ads: Set timescale to 0 after save
5
+
3
6
  ## [0.2.27 - 2023-11-01]
4
7
  - No longer stop ad
5
8
  - Update ad status by adapter
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -682,7 +682,7 @@ namespace Amanotes.Core.Internal
682
682
  if (willSaveTimeScale)
683
683
  {
684
684
  Ads._savedTimeScale = Time.timeScale;
685
- Ads._savedTimeScale = Time.timeScale;
685
+ Time.timeScale = 0;
686
686
  }
687
687
 
688
688
  Ads._adapter.HandleBeforeAdShow();
package/Runtime/AmaGDK.cs CHANGED
@@ -14,7 +14,7 @@ namespace Amanotes.Core
14
14
  {
15
15
  public partial class AmaGDK : MonoBehaviour
16
16
  {
17
- public const string VERSION = "0.2.27";
17
+ public const string VERSION = "0.2.28";
18
18
 
19
19
  internal static AmaGDK _instance;
20
20
  internal static Status _status = Status.None;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.2.27",
3
+ "version": "0.2.28",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2019.4",