Commit 9653ac9 1 parent 248aa29 commit 9653ac9 Copy full SHA for 9653ac9
File tree 2 files changed +37
-18
lines changed
2 files changed +37
-18
lines changed Original file line number Diff line number Diff line change 1
- v1.3.1 May 1 2019
2
- [ CHANGE] Update README
3
1
4
- v1.3.0 May 1 2019
5
- [ CHANGE] Simplified logic
6
- [ CHANGE] Compatible with unity 2017
2
+ v1.0.1 Sep 1 2020
3
+ [ NEW] Add FindPrefabBySprite
4
+ [ NEW] Add FindUsageOnCurrentScene
5
+ [ NEW] Support input class name for FindPrefabByScript
6
+ [ NEW] Support npm package
7
+ [ FIX] Fix some error
7
8
8
- v1.2.0 Apr 10 2019
9
- [ NEW] Support for opening package files
10
-
11
- v1.1.0 Mar 1 2019
12
- [ NEW] Add assembly definition files
13
-
14
- v1.0.0 Feb 22 2019
15
- [ NEW] The first public version
9
+ v1.0.0 Jan 1 2020
10
+ [ NEW] The first public version
Original file line number Diff line number Diff line change @@ -13,24 +13,48 @@ Find Asset in Unity.
13
13
![ shotscreen] ( Documentation~/shotscreen1.png )
14
14
15
15
16
- #### Requirement
16
+ ### Requirement
17
17
18
- - Unity 2018.3 +
18
+ - Unity 2018.4 +
19
19
20
- #### Install
20
+ ### Install
21
+
22
+ - By NPM (Ease upgrade in Package Manager UI)** Recommend**
23
+
24
+ Find the manifest.json file in the Packages folder of your project and edit it to look like this:
25
+ ``` js
26
+ {
27
+ {
28
+ " scopedRegistries" : [
29
+ {
30
+ " name" : " My Registry" ,
31
+ " url" : " https://registry.npmjs.org" ,
32
+ " scopes" : [
33
+ " com.litefeel"
34
+ ]
35
+ }
36
+ ],
37
+ " dependencies" : {
38
+ " com.litefeel.finder" : " 1.0.0" ,
39
+ ...
40
+ }
41
+ }
42
+ ` ` `
43
+
44
+ - By git url
21
45
22
46
Find the manifest.json file in the Packages folder of your project and edit it to look like this:
23
47
` ` ` js
24
48
{
25
49
" dependencies" : {
26
- " com.litefeel.finder" : " https://github.com/litefeel/Unity-Finder.git" ,
50
+ " com.litefeel.finder" : " https://github.com/litefeel/Unity-Finder.git#1.0.0 " ,
27
51
...
28
52
}
29
53
}
30
54
` ` `
31
55
32
56
33
- #### Support
57
+ ### Support
34
58
35
59
* Create issues by issues page (https://github.com/litefeel/Unity-Finder/issues)
36
60
* Send email to me: [email protected]
You can’t perform that action at this time.
0 commit comments