File tree Expand file tree Collapse file tree 3 files changed +39
-5
lines changed Expand file tree Collapse file tree 3 files changed +39
-5
lines changed Original file line number Diff line number Diff line change
1
+ #### v1.1.0 - 2021-03-18
2
+ - Support XLua
3
+
1
4
#### v1.0.0 - 2020-02-27
2
5
- initial version
Original file line number Diff line number Diff line change 1
- # Rename Tools
1
+ # LuaInteractive
2
2
3
3
4
4
[ ![ ] ( https://img.shields.io/github/release/litefeel/Unity-LuaInteractive.svg?label=latest%20version )] ( https://github.com/litefeel/Unity-LuaInteractive/releases )
14
14
- No runtime resources required
15
15
- No scripting required
16
16
17
+
18
+
17
19
## Install
18
20
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
+
19
44
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
20
45
``` js
21
46
{
22
47
" 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 " ,
24
49
...
25
50
}
26
51
}
27
52
```
28
53
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
+
29
60
## How to use?
30
61
31
62
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
42
73
- Send email to me:
< [email protected] >
43
74
44
75
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)
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " com.litefeel.luainteractive" ,
3
3
"displayName" : " Lua Interactive" ,
4
- "version" : " 1.0 .0" ,
4
+ "version" : " 1.1 .0" ,
5
5
"unity" : " 2018.3" ,
6
6
"description" : " LuaInteractive is just perfect Unity editor plugin to excute lua on play mode." ,
7
7
"keywords" : [
You can’t perform that action at this time.
0 commit comments