From 01e1bd93a994d4edb80189e709a883319c2084cb Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Fri, 26 Oct 2018 18:48:51 +0100 Subject: [PATCH] Update project settings --- Bindings/Raylib.cs | 9 ++++++--- Test.NetCore/Test.NetCore.csproj | 4 ++++ Test.NetCoreRT/Test.NetCoreRT.csproj | 3 +++ 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index 5ec0aa9..9602325 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -712,8 +712,8 @@ namespace Raylib public float eyeToScreenDistance; public float lensSeparationDistance; public float interpupillaryDistance; - public float[] lensDistortionValues = new float[4]; - public float[] chromaAbCorrection = new float[4]; + public float[] lensDistortionValues; + public float[] chromaAbCorrection; } #endregion @@ -2210,7 +2210,10 @@ namespace Raylib { VrDeviceInfo hmd = new VrDeviceInfo(); // Current VR device info - switch (vrDeviceType) + hmd.lensDistortionValues = new float[4]; + hmd.chromaAbCorrection = new float[4]; + + switch (vrDeviceType) { case VrDeviceType.HMD_DEFAULT_DEVICE: case VrDeviceType.HMD_OCULUS_RIFT_CV1: diff --git a/Test.NetCore/Test.NetCore.csproj b/Test.NetCore/Test.NetCore.csproj index 8adaf80..d08e45e 100644 --- a/Test.NetCore/Test.NetCore.csproj +++ b/Test.NetCore/Test.NetCore.csproj @@ -12,6 +12,10 @@ true + + false + true + diff --git a/Test.NetCoreRT/Test.NetCoreRT.csproj b/Test.NetCoreRT/Test.NetCoreRT.csproj index 91009d2..a762ae7 100644 --- a/Test.NetCoreRT/Test.NetCoreRT.csproj +++ b/Test.NetCoreRT/Test.NetCoreRT.csproj @@ -12,6 +12,9 @@ true + + true +