Skip to content

Commit

Permalink
✨ feat: UPM
Browse files Browse the repository at this point in the history
  • Loading branch information
esnya committed Mar 19, 2021
1 parent 1a77388 commit 1e32a4f
Show file tree
Hide file tree
Showing 20 changed files with 77 additions and 49 deletions.
2 changes: 0 additions & 2 deletions .commitlintrc.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .huskyrc.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .releaserc.yml

This file was deleted.

8 changes: 0 additions & 8 deletions Assets.meta

This file was deleted.

3 changes: 3 additions & 0 deletions Assets/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/*/
/*.meta
!InariUdon*
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions Assets/InariUdon/InariUdonRuntime.asmdef
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "InariUdonRuntime",
"references": [
"VRC.Udon",
"UdonSharp.Runtime",
"UdonToolkitRuntime",
"UdonSharp.Editor",
"Unity.TextMeshPro"
],
"optionalUnityReferences": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": []
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Assets/InariUdon/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "com.nekometer.esnya.inari-udon",
"displayName": "InariUdon",
"private": true,
"description": "",
"keywords": [
"VRChat",
"Unity"
],
"license": "MIT",
"author": "esnya",
"unity": "2018.4"
}
File renamed without changes.
7 changes: 0 additions & 7 deletions LICENSE.meta

This file was deleted.

1 change: 1 addition & 0 deletions Packages/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/com.*
13 changes: 12 additions & 1 deletion Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"dependencies": {
"com.orels1.udon-toolkit": "https://github.com/esnya/UdonToolkit.git#feature/upm",
"com.unity.ads": "2.0.8",
"com.unity.analytics": "3.2.3",
"com.unity.cinemachine": "2.6.1",
"com.unity.collab-proxy": "1.2.15",
"com.unity.package-manager-ui": "2.0.8",
"com.unity.postprocessing": "3.0.3",
"com.unity.purchasing": "2.0.3",
"com.unity.textmeshpro": "1.4.1",
"com.unity.textmeshpro": "1.5.1",
"com.unity.xr.oculus.standalone": "1.38.4",
"com.unity.xr.openvr.standalone": "1.0.5",
"com.unity.modules.ai": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.assetbundle": "1.0.0",
Expand Down Expand Up @@ -36,5 +41,11 @@
"com.unity.modules.vr": "1.0.0",
"com.unity.modules.wind": "1.0.0",
"com.unity.modules.xr": "1.0.0"
},
"lock": {
"com.orels1.udon-toolkit": {
"revision": "feature/upm",
"hash": "10495a581de75ccf6858c125e78b7d2a35ad689f"
}
}
}
Binary file modified ProjectSettings/ProjectSettings.asset
Binary file not shown.
Binary file modified ProjectSettings/graphicssettings.asset
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Useful prefabs and Udon scripts for VRChat World SDK 3.0
Place prefabs into Scene in [Assets/InariUdon/Components/<COMPONENT_NAME>](Assets/InariUdon/Components) or add UdonScript in Script directory.

## Setup
1. Install requirements in below.
1. Install requirements in below. (Do not forget Setup UdonToolkit).
2. Download latest non-pre-release `InariUdon-<VERSION>.zip` from [Releases](https://github.com/esnya/InariUdon/releases).
3. Unzip and drag and drop .unitypackage into Project window of Unity.

Expand Down
7 changes: 0 additions & 7 deletions README.md.meta

This file was deleted.

7 changes: 0 additions & 7 deletions package-lock.json.meta

This file was deleted.

34 changes: 27 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"name": "com.nekometer.esnya.inari-udon",
"displayName": "InariUdon",
"version": "2.2.1",
"name": "inari-udon-dev",
"private": true,
"description": "",
"keywords": [
Expand All @@ -10,10 +8,6 @@
],
"license": "MIT",
"author": "esnya",
"scripts": {
"version": "npx cross-var npx gitmoji-changelog $npm_package_version && git add CHANGELOG.md"
},
"unity": "2018.4",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
Expand All @@ -23,5 +17,31 @@
"husky": "^4.3.8",
"semantic-release": "^17.4.2",
"semantic-release-gitmoji": "^1.3.4"
},

"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"gitmoji"
]
},
"release": {
"plugins": [
"semantic-release-gitmoji",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/"
}
]
}
]
]
}
}

0 comments on commit 1e32a4f

Please sign in to comment.