├── package └── package.json └── README.md /package/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "com.resistancestudio.template.vr", 3 | "displayName": "VR", 4 | "version": "1.0.0", 5 | "type": "template", 6 | "unity": "2020.1", 7 | "description": "Use this template to create an VR project with XR Interaction plugin.", 8 | "dependencies": {}, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/Resistance-Studio/UnityVRTemplate.git" 12 | } 13 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UnityVRTemplate 2 | Unity template for VR projects. 3 | 4 | **Minimum Unity Version: 2020 LTS** 5 | 6 | Based on this tutorial: https://www.lucashaley.com/how-to-create-a-new-unity-template-from-scratch.html 7 | 8 | And the VR setup from Justing P Barnett's tutorials: https://www.youtube.com/channel/UC1yXfU3c2gXchdmscjvCmMQ 9 | 10 | How to use: 11 | ----------- 12 | 13 | 1- Locate your Unity's templates folders. 14 | 15 | On Mac is something like: `/Applications/Unity/Hub/Editor//Unity.app/Contents/Resources/PackageManager/ProjectTemplates` 16 | 17 | On windows: `\Program Files\Unity\Hub\Editor\\Editor\Data\Resources\PackageManager\ProjectTemplates` 18 | 19 | 2- Put the tgz archive on there. 20 | 21 | 3- Optional: Restart the hub if you had it open. 22 | 23 | 4- Open Unity Hub and you'll see the new template called VR. 24 | 25 | 26 | How to create the tgz via command line: 27 | --------------------------------------- 28 | 29 | Go to the folder where you downloaded this repo and execute this command: 30 | ``` 31 | tar czf com.resistancestudio.template.vr-1.0.0.tgz package/ 32 | ``` 33 | 34 | Enjoy! 35 | --------------------------------------------------------------------------------