mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2026-08-15 02:57:49 +04:00
14 lines
409 B
C#
14 lines
409 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 string SourceKind { get; init; } = "MSH";
|
||
|
|
}
|