1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
-
- namespace NRKernal
- {
- using System;
- #if UNITY_STANDALONE_WIN
- using System.Runtime.InteropServices;
- using UnityEngine;
- #endif
-
- public class NativeInterface
- {
-
- public NativeInterface()
- {
-
- #if UNITY_STANDALONE_WIN
- NativeApi.SetDllDirectory(System.IO.Path.Combine(Application.dataPath, "Plugins"));
- #endif
- NativeHeadTracking = new NativeHeadTracking(this);
- NativeTracking = new NativeTracking(this);
- NativeTrackableImage = new NativeTrackableImage(this);
- NativePlane = new NativePlane(this);
- NativeTrackable = new NativeTrackable(this);
- Configration = new NativeConfigration(this);
- NativeRenderring = new NativeRenderring();
- }
-
-
- public UInt64 TrackingHandle { get; set; }
-
-
- internal NativeHeadTracking NativeHeadTracking { get; set; }
-
-
- internal NativeTracking NativeTracking { get; set; }
-
-
- internal NativeTrackableImage NativeTrackableImage { get; set; }
-
-
- internal NativePlane NativePlane { get; set; }
-
-
- internal NativeTrackable NativeTrackable { get; set; }
-
-
- internal NativeConfigration Configration { get; set; }
-
-
- internal NativeRenderring NativeRenderring { get; set; }
- private partial struct NativeApi
- {
- #if UNITY_STANDALONE_WIN
- [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
- public static extern bool SetDllDirectory(string lpPathName);
- #endif
- }
- }
- }
|