OVRXRSDKNative.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. /************************************************************************************
  2. Copyright : Copyright (c) Facebook Technologies, LLC and its affiliates. All rights reserved.
  3. Licensed under the Oculus Utilities SDK License Version 1.31 (the "License"); you may not use
  4. the Utilities SDK except in compliance with the License, which is provided at the time of installation
  5. or download, or which otherwise accompanies this software in either electronic or hard copy form.
  6. You may obtain a copy of the License at
  7. https://developer.oculus.com/licenses/utilities-1.31
  8. Unless required by applicable law or agreed to in writing, the Utilities SDK distributed
  9. under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
  10. ANY KIND, either express or implied. See the License for the specific language governing
  11. permissions and limitations under the License.
  12. ************************************************************************************/
  13. #if USING_XR_MANAGEMENT && USING_XR_SDK_OCULUS
  14. #define USING_XR_SDK
  15. #endif
  16. using System.Runtime.InteropServices;
  17. // C# wrapper for Unity XR SDK Native APIs.
  18. #if USING_XR_SDK
  19. public static class OculusXRPlugin
  20. {
  21. [DllImport("OculusXRPlugin")]
  22. public static extern void SetColorScale(float x, float y, float z, float w);
  23. [DllImport("OculusXRPlugin")]
  24. public static extern void SetColorOffset(float x, float y, float z, float w);
  25. }
  26. #endif