Skip to content

Commit 8a115b1

Browse files
committed
Fix player build errors.
1 parent 47594c8 commit 8a115b1

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Assets/Demo/Scripts/CharacterImageModalTransitionAnimation.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using TMPro.EditorUtilities;
2-
using UnityEngine;
1+
using UnityEngine;
32
using UnityScreenNavigator.Runtime.Core.Shared;
43

54
namespace Demo.Scripts

Assets/UnityScreenNavigator/Runtime/Core/Shared/UnityScreenNavigatorSettings.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public static UnityScreenNavigatorSettings Instance
144144
#else
145145
if (_instance == null)
146146
{
147-
_instance = CreateInstance<ScreenNavigatorSettings>();
147+
_instance = CreateInstance<UnityScreenNavigatorSettings>();
148148
}
149149

150150
return _instance;

Assets/UnityScreenNavigator/Runtime/Foundation/AssetLoader/AddressableAssetLoaderObject.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#if USE_ADDLESSABLES
12
using UnityEngine;
23

34
namespace UnityScreenNavigator.Runtime.Foundation.AssetLoader
@@ -22,4 +23,5 @@ public override void Release(AssetLoadHandle handle)
2223
_loader.Release(handle);
2324
}
2425
}
25-
}
26+
}
27+
#endif

Assets/UnityScreenNavigator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.harumak.unityscreennavigator",
33
"displayName": "UnityScreenNavigator",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"unity": "2019.4",
66
"license": "MIT",
77
"dependencies": {

0 commit comments

Comments
 (0)