com.puzzlescapegames.services 1.3.5 → 1.3.6

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.
@@ -48,7 +48,9 @@ namespace PuzzlescapeGames.Services.UITransitionService
48
48
 
49
49
  CanvasGroup.DOKill( true );
50
50
  var tween = CanvasGroup.DOFade( 1f, duration ).SetEase( easing );
51
+ #if UNITASK_DOTWEEN_SUPPORT
51
52
  await tween.ToUniTask();
53
+ #endif
52
54
 
53
55
  IsInProcess = false;
54
56
 
@@ -63,7 +65,9 @@ namespace PuzzlescapeGames.Services.UITransitionService
63
65
 
64
66
  CanvasGroup.DOKill( true );
65
67
  var tween = CanvasGroup.DOFade( 0f, duration ).SetEase( easing );
68
+ #if UNITASK_DOTWEEN_SUPPORT
66
69
  await tween.ToUniTask();
70
+ #endif
67
71
 
68
72
  IsInProcess = false;
69
73
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name" : "com.puzzlescapegames.services",
3
3
  "displayName" : "Puzzlescape Games Services",
4
- "version" : "1.3.5",
4
+ "version" : "1.3.6",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Common services.",
7
7
  "repository": {