├── .github └── workflows │ ├── build-listing.yml │ └── release.yml ├── .gitignore ├── Assets └── .gitkeep ├── Packages ├── .gitignore ├── com.vrchat.core.bootstrap │ ├── Editor.meta │ ├── Editor │ │ ├── Bootstrap.cs │ │ ├── Bootstrap.cs.meta │ │ ├── VRChat.Bootstrapper.Editor.asmdef │ │ └── VRChat.Bootstrapper.Editor.asmdef.meta │ ├── License.md │ ├── License.md.meta │ ├── package.json │ └── package.json.meta ├── com.vrchat.demo-template │ ├── Editor │ │ ├── ExampleEditorScript.cs │ │ └── VRChatPackageTemplate.Editor.asmdef │ └── package.json ├── manifest.json ├── packages-lock.json └── vpm-manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md └── Website ├── app.js ├── banner.png ├── favicon.ico ├── index.html └── styles.css /.github/workflows/build-listing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/.github/workflows/build-listing.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/.gitignore -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/Editor.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/Editor/Bootstrap.cs.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/Editor/VRChat.Bootstrapper.Editor.asmdef.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/License.md -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/License.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/License.md.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/package.json -------------------------------------------------------------------------------- /Packages/com.vrchat.core.bootstrap/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.core.bootstrap/package.json.meta -------------------------------------------------------------------------------- /Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.demo-template/Editor/ExampleEditorScript.cs -------------------------------------------------------------------------------- /Packages/com.vrchat.demo-template/Editor/VRChatPackageTemplate.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.demo-template/Editor/VRChatPackageTemplate.Editor.asmdef -------------------------------------------------------------------------------- /Packages/com.vrchat.demo-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/com.vrchat.demo-template/package.json -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /Packages/vpm-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Packages/vpm-manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/README.md -------------------------------------------------------------------------------- /Website/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Website/app.js -------------------------------------------------------------------------------- /Website/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Website/banner.png -------------------------------------------------------------------------------- /Website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Website/favicon.ico -------------------------------------------------------------------------------- /Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Website/index.html -------------------------------------------------------------------------------- /Website/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrchat-community/template-package/HEAD/Website/styles.css --------------------------------------------------------------------------------