This tutorial will guide you through the setup of the HTC Vive Tracker in Python 3.6 on Ubuntu 14.04.
Up to date graphics drivers
x86 architecture
SteamVR requires >4GB disk space
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using Mirror; | |
| [RequireComponent(typeof(NetworkIdentity))] | |
| public class ExampleTest : NetworkBehaviour | |
| { | |
| public float sendRate = 25; |
| using UnityEngine; | |
| public class OpacityChanger : MonoBehaviour | |
| { | |
| public Material target; | |
| public void UpdateOpacity(float alphaValue) | |
| { | |
| Color color = target.color; | |
| color.a = alphaValue; | |
| target.color = color; | |
| } |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class RotateCubeAroundAxis : MonoBehaviour | |
| { | |
| private bool rotate_toggle = false; | |
| void Update() |