Project Cuba - Into the Wild
For the past 10 years I've had a project in the backburner. It all start...
Over the last couple of years, I’ve become more and more interested in virtual reality, especially after trying out a bunch of demos at the last Unite in LA. So much, in fact, that I have decided to go ahead and buy an HTC Vive. Being a new technology, it is still quite expensive, not only because of the price of the device itself but also because you need to have a pretty beefy PC to support it. I have put together a Hackintosh (maybe more about that in a future post), so I can still use OSX for my daily job but also run Windows which is a requirement for desktop VR.
To put the Vive to good use I have decided to create a simple flying game. The first challenge I faced was figuring out how to control a plane using only the Vive controllers. The solution that made most sense to me was to recreate an airplane joystick (aka HOTAS), inside the game itself and then let the player grab it and move it using their own hands like in real life.
This is how it looks:
To speed up the development, I have been using the amazing VRTK library which is a collection of useful scripts and concepts to aid building VR solutions rapidly. It handles stuff like locomotion, interactions, physics, UI, etc. If you are planning to develop in VR using Unity, trust me, you will want to use this library. Best of all, it is free and open-source!
Using VRTK made things really simple and all I had to do was create a configurable joint between the stick and the base. Here are the settings I used:
After creating the configurable joint, you will need to create a new class that overrides the VRTK_InteractableObject class (from the VRTK library I mentioned earlier). This class provides everything you need to know about when the player grabbed, dropped or moved the joystick. With this in place, you now have all the data needed to maneuver the plane, including the roll and pitch (mapped to XPercentage and ZPercentage here):
With those two pieces in place you can now map the joystick movement to anything you see fit. In my case, a simple airplane. Let me know what you think about this solution and if you have any doubts about the implementation.
Feel free to reach me on Twitter or use the form below. I'll usually reply within 48 hours.