Files
2026-06-06 00:42:07 +03:00

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";
}