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

@ -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);