com.puzzlescapegames.services 1.3.5 → 1.3.7
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.
|
@@ -37,6 +37,17 @@ namespace PuzzlescapeGames.Services.Editor
|
|
|
37
37
|
rootDict.SetString( "NSAdvertisingAttributionReportEndpoint ", "https://appsflyer-skadnetwork.com/" );
|
|
38
38
|
|
|
39
39
|
File.WriteAllText( plistPath, plist.WriteToString() );
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
//Disabling ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES Unity Framework target
|
|
43
|
+
string projectPath = path + "/Unity-iPhone.xcodeproj/project.pbxproj";
|
|
44
|
+
PBXProject pbxProject = new PBXProject();
|
|
45
|
+
pbxProject.ReadFromFile( projectPath );
|
|
46
|
+
|
|
47
|
+
string target = pbxProject.GetUnityFrameworkTargetGuid();
|
|
48
|
+
pbxProject.SetBuildProperty( target, "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES", "NO" );
|
|
49
|
+
|
|
50
|
+
pbxProject.WriteToFile( projectPath );
|
|
40
51
|
}
|
|
41
52
|
}
|
|
42
53
|
}
|
|
@@ -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
|
|