-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
42 lines (36 loc) · 1.07 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
namespace SharpRift
{
class Program
{
static void Main(string[] args)
{
VR.Initialize();
Console.WriteLine("Oculus SDK version: " + VR.GetVersionString());
HMDisplay vrDevice;
if (VR.Detect() > 0)
{
// Create a link to the first VR device
vrDevice = VR.Create(0);
}
else
{
// Create Fake VR Device
vrDevice = VR.CreateDebug(HMDisplayType.DK2);
Console.WriteLine("Last Error: " + VR.GetLastError());
}
// Start Sensor
if (VR.ConfigureTracking(vrDevice, SensorCaps.Orientation | SensorCaps.Position | SensorCaps.YawCorrection, 0))
{
Console.WriteLine("Sensor has started");
}
VR.Destroy(vrDevice);
VR.Shutdown();
}
}
}