Exemplo n.º 1
0
 /// <summary>
 /// Creates a new FaceSet with the specified values.
 /// </summary>
 public FaceSet(FSFlags flags, bool triangleStrip, bool cullBackfaces, short unk06, List <int> indices)
 {
     Flags         = flags;
     TriangleStrip = triangleStrip;
     CullBackfaces = cullBackfaces;
     Unk06         = unk06;
     Indices       = indices;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new FaceSet with the specified values.
 /// </summary>
 public FaceSet(FSFlags flags, bool triangleStrip, bool cullBackfaces, byte unk06, byte unk07, int[] indices)
 {
     Flags         = flags;
     TriangleStrip = triangleStrip;
     CullBackfaces = cullBackfaces;
     Unk06         = unk06;
     Unk07         = unk07;
     Indices       = indices;
 }