2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Fixed RayHitInfo

- Fixed issue with RayHitInfo. bool types different so using byte instead.
This commit is contained in:
ChrisDill 2018-10-25 13:07:38 +01:00
parent f7ab1fbd7a
commit 696a9cf14a
4 changed files with 17 additions and 2 deletions

View File

@ -642,14 +642,20 @@ namespace Raylib
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct RayHitInfo
{
public bool hit;
public bool hit
{
get { return Convert.ToBoolean(isHit); }
set { isHit = Convert.ToByte(hit); }
}
public byte isHit;
public float distance;
public Vector3 position;
public Vector3 normal;
public RayHitInfo(bool hit, float distance, Vector3 position, Vector3 normal)
{
this.hit = hit;
this.isHit = Convert.ToByte(hit);
this.distance = distance;
this.position = position;
this.normal = normal;

View File

@ -8,6 +8,7 @@ namespace Raylib
#region Raylib-cs Types
// Vector2 type
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct Vector2
{
public float x;
@ -161,6 +162,7 @@ namespace Raylib
}
// Vector3 type
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct Vector3
{
public float x;
@ -283,6 +285,7 @@ namespace Raylib
}
// Vector4 type
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct Vector4
{
public float x;

View File

@ -9,6 +9,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Bindings\Bindings.csproj" />
</ItemGroup>

View File

@ -9,6 +9,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Bindings\Bindings.csproj" />
</ItemGroup>