Skip to content

Commit f1f45c7

Browse files
authored
Merge pull request #1 from coryleach/development
Development
2 parents 30f7ce9 + 0af49b7 commit f1f45c7

5 files changed

+57
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1-
{ "name": "com.gameframe.sceneswitcher.Editor", "references": [ "com.gameframe.sceneswitcher" ], "optionalUnityReferences": [], "includePlatforms": [ "Editor" ], "excludePlatforms": [] }
1+
{
2+
"name": "com.gameframe.sceneswitcher.Editor",
3+
"references": [],
4+
"optionalUnityReferences": [],
5+
"includePlatforms": [
6+
"Editor"
7+
],
8+
"excludePlatforms": [],
9+
"allowUnsafeCode": false,
10+
"overrideReferences": false,
11+
"precompiledReferences": [],
12+
"autoReferenced": true,
13+
"defineConstraints": []
14+
}

LICENSE.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h1 align="center">Welcome to com.gameframe.sceneswitcher 👋</h1>
22
<p>
3-
<img alt="Version" src="https://img.shields.io/badge/version-1.0.0-blue.svg?cacheSeconds=2592000" />
3+
<img alt="Version" src="https://img.shields.io/badge/version-1.0.1-blue.svg?cacheSeconds=2592000" />
44
<a href="https://twitter.com/coryleach">
55
<img alt="Twitter: coryleach" src="https://img.shields.io/twitter/follow/coryleach.svg?style=social" target="_blank" />
66
</a>
@@ -29,6 +29,24 @@ AutoSort = Moves the most recently clicked button to the top of the list
2929
Additive = Loads scene additively when the button is clicked
3030
Close = Closes other scenes
3131
```
32+
## Install
33+
34+
#### Using UnityPackageManager (for Unity 2018.3 or later)
35+
36+
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
37+
```js
38+
{
39+
"dependencies": {
40+
"com.gameframe.sceneswitcher": "https://github.com/coryleach/UnitySceneSwitcher.git#1.0.1",
41+
...
42+
},
43+
}
44+
```
45+
46+
##### Requirement
47+
48+
* Unity 2018.4 or later (Tested in Unity 2018.4.3f1)
49+
* No other SDK are required
3250
3351
## Author
3452
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
{ "name": "com.gameframe.sceneswitcher.Editor.Tests", "references": [ "com.gameframe.sceneswitcher" ], "optionalUnityReferences": ["TestAssemblies"], "includePlatforms": [ "Editor" ], "excludePlatforms": [] }
1+
{
2+
"name": "com.gameframe.sceneswitcher.Editor.Tests",
3+
"references": [],
4+
"optionalUnityReferences": [
5+
"TestAssemblies"
6+
],
7+
"includePlatforms": [
8+
"Editor"
9+
],
10+
"excludePlatforms": [],
11+
"allowUnsafeCode": false,
12+
"overrideReferences": false,
13+
"precompiledReferences": [],
14+
"autoReferenced": true,
15+
"defineConstraints": []
16+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.gameframe.sceneswitcher",
33
"displayName": "Gameframe.SceneSwitcher",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"description": "Unity editor window for quick scene switching.",
66
"keywords": [],
77
"author": {

0 commit comments

Comments
 (0)