Watch
2
0
Fork
You've already forked raylib-cs
0

Start to port to 5.0.0

This commit is contained in:
MrScautHD 2023-11-19 12:04:39 +01:00
commit e009520be3
8 changed files with 158 additions and 13 deletions

View file

@ -75,6 +75,11 @@ public enum ConfigFlags : uint
/// </summary>
FLAG_WINDOW_MOUSE_PASSTHROUGH = 0x00004000,
/// <summary>
/// Set to run program in borderless windowed mode
/// </summary>
FLAG_BORDERLESS_WINDOWED_MODE = 0x00008000,
/// <summary>
/// Set to try enabling MSAA 4X
/// </summary>

View file

@ -104,6 +104,11 @@ public readonly unsafe partial struct ModelAnimation
/// </summary>
public readonly Transform** FramePoses;
/// <summary>
/// Animation name
/// </summary>
public readonly string Name; // TODO (CHECK IF IT REALLY OK TO USE STRING)
/// <inheritdoc cref="FramePoses"/>
public FramePosesCollection FramePosesColl => new(FramePoses, FrameCount, BoneCount);

View file

@ -1,4 +1,3 @@
using System;
using System.Runtime.InteropServices;
namespace Raylib_cs;

View file

@ -1,4 +1,3 @@
using System;
using System.Runtime.InteropServices;
namespace Raylib_cs;