Start to port to 5.0.0
This commit is contained in:
parent
2d1d558c2d
commit
e009520be3
8 changed files with 158 additions and 13 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Raylib_cs;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Raylib_cs;
|
||||
|
|
|
|||
Loading…
Reference in a new issue