Skip to content

Commit

Permalink
Fix player build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Haruma-K committed Oct 26, 2021
1 parent 47594c8 commit 8a115b1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using TMPro.EditorUtilities;
using UnityEngine;
using UnityEngine;
using UnityScreenNavigator.Runtime.Core.Shared;

namespace Demo.Scripts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public static UnityScreenNavigatorSettings Instance
#else
if (_instance == null)
{
_instance = CreateInstance<ScreenNavigatorSettings>();
_instance = CreateInstance<UnityScreenNavigatorSettings>();
}

return _instance;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#if USE_ADDLESSABLES
using UnityEngine;

namespace UnityScreenNavigator.Runtime.Foundation.AssetLoader
Expand All @@ -22,4 +23,5 @@ public override void Release(AssetLoadHandle handle)
_loader.Release(handle);
}
}
}
}
#endif
2 changes: 1 addition & 1 deletion Assets/UnityScreenNavigator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.harumak.unityscreennavigator",
"displayName": "UnityScreenNavigator",
"version": "1.0.1",
"version": "1.0.2",
"unity": "2019.4",
"license": "MIT",
"dependencies": {
Expand Down

0 comments on commit 8a115b1

Please sign in to comment.