mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2026-08-15 02:57:49 +04:00
17 lines
511 B
C#
17 lines
511 B
C#
namespace NResUI.Rendering.Viewport;
|
|
|
|
public sealed class ViewportPieceDebugInfo
|
|
{
|
|
public int SourcePieceIndex { get; init; }
|
|
public int SourceParentIndex { get; init; }
|
|
public int GeometrySlotIndex { get; init; }
|
|
public uint Msh01Flags { get; init; }
|
|
public int BatchCount { get; init; }
|
|
public int TriangleCount { get; init; }
|
|
|
|
public int FallbackKeyframeIndex { get; init; } = -1;
|
|
public bool HasRestPose { get; init; }
|
|
|
|
public string SourceKind { get; init; } = "MSH";
|
|
}
|