Building the TRAPPIST-1 System
Now that we have Unity configured to build for our device, we can begin building our space themes VR environment. We have designed this project to focus on building and deploying a VR experience. If you are moderately familiar with Unity, this project will be very simple. Again, this is by design. However, if you are relatively new, then the basic 3D primitives, a few textures, and a simple orbiting script will be a great way to expand your understanding of the development platform:
- Create a new script by selecting
Assets
|Create
|C# Script
from the main menu. By default, the script will be titledNewBehaviourScript
. Single click this item in theProject
window and rename itOrbitController
. Finally, we will keep the project organized by draggingOrbitController
's icon to theScripts
folder. - Double-click the
OrbitController
script item to edit it. Doing this will open a script editor as a separate application and load theOrbitController
script for editing...