Skip to content

Commit 9dec6c2

Browse files
committed
Release 1.1.0
1 parent 23c097a commit 9dec6c2

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
#### v1.1.0 - 2021-03-18
2+
- Support XLua
3+
14
#### v1.0.0 - 2020-02-27
25
- initial version

README.md

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Rename Tools
1+
# LuaInteractive
22

33

44
[![](https://img.shields.io/github/release/litefeel/Unity-LuaInteractive.svg?label=latest%20version)](https://github.com/litefeel/Unity-LuaInteractive/releases)
@@ -14,18 +14,49 @@
1414
- No runtime resources required
1515
- No scripting required
1616

17+
18+
1719
## Install
1820

21+
#### Using npm (Ease upgrade in Package Manager UI)**Recommend**
22+
23+
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
24+
``` js
25+
{
26+
"scopedRegistries": [
27+
{
28+
"name": "My Registry",
29+
"url": "https://registry.npmjs.org",
30+
"scopes": [
31+
"com.litefeel"
32+
]
33+
}
34+
],
35+
"dependencies": {
36+
"com.litefeel.luainteractive": "1.1.0",
37+
...
38+
}
39+
}
40+
```
41+
42+
#### Using git
43+
1944
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
2045
``` js
2146
{
2247
"dependencies": {
23-
"com.litefeel.luainteractive": "https://github.com/litefeel/Unity-LuaInteractive.git",
48+
"com.litefeel.luainteractive": "https://github.com/litefeel/Unity-LuaInteractive.git#1.1.0",
2449
...
2550
}
2651
}
2752
```
2853

54+
#### Using .zip file (for Unity 5.0+)
55+
56+
1. Download `Source code` from [Releases](https://github.com/litefeel/Unity-LuaInteractive/releases)
57+
2. Extract the package into your Unity project
58+
59+
2960
## How to use?
3061

3162
1. Select `Edit > Project Settings… > Lua Interactive` from the menu
@@ -42,5 +73,5 @@ Find the manifest.json file in the Packages folder of your project and edit it t
4273
- Send email to me: <[email protected]>
4374

4475

45-
[RenameTools]: https://github.com/litefeel/Unity-LuaInteractive (RenameTools)
46-
[issues]: https://github.com/litefeel/Unity-LuaInteractive/issues (RenameTools issues)
76+
[LuaInteractive]: https://github.com/litefeel/Unity-LuaInteractive (LuaInteractive)
77+
[issues]: https://github.com/litefeel/Unity-LuaInteractive/issues (LuaInteractive issues)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.litefeel.luainteractive",
33
"displayName": "Lua Interactive",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"unity": "2018.3",
66
"description": "LuaInteractive is just perfect Unity editor plugin to excute lua on play mode.",
77
"keywords": [

0 commit comments

Comments
 (0)