mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
Update project settings
This commit is contained in:
parent
e6c3d8532f
commit
01e1bd93a9
@ -712,8 +712,8 @@ namespace Raylib
|
|||||||
public float eyeToScreenDistance;
|
public float eyeToScreenDistance;
|
||||||
public float lensSeparationDistance;
|
public float lensSeparationDistance;
|
||||||
public float interpupillaryDistance;
|
public float interpupillaryDistance;
|
||||||
public float[] lensDistortionValues = new float[4];
|
public float[] lensDistortionValues;
|
||||||
public float[] chromaAbCorrection = new float[4];
|
public float[] chromaAbCorrection;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
@ -2210,7 +2210,10 @@ namespace Raylib
|
|||||||
{
|
{
|
||||||
VrDeviceInfo hmd = new VrDeviceInfo(); // Current VR device info
|
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_DEFAULT_DEVICE:
|
||||||
case VrDeviceType.HMD_OCULUS_RIFT_CV1:
|
case VrDeviceType.HMD_OCULUS_RIFT_CV1:
|
||||||
|
@ -12,6 +12,10 @@
|
|||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Bindings\Bindings.csproj" />
|
<ProjectReference Include="..\Bindings\Bindings.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -12,6 +12,9 @@
|
|||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Bindings\Bindings.csproj" />
|
<ProjectReference Include="..\Bindings\Bindings.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user