Ejemplo n.º 1
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 public NifGeometry(int meshId, int id, string file, string textual, float x, float y, float z, float scale, float angle, float rotationX, float rotationY, float rotationZ, bool flip, bool ground, NifGeometry relative)
 {
     MeshID      = meshId;
     ID          = id;
     FileName    = file;
     TextualName = textual;
     X           = x;
     Y           = y;
     Z           = z;
     Scale       = scale;
     Angle       = angle;
     RotationX   = rotationX;
     RotationY   = rotationY;
     RotationZ   = rotationZ;
     Flip        = flip;
     OnGround    = ground;
     RelativeTo  = relative;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Default Constructor
 /// </summary>
 public NifGeometry(int meshId, int id, string file, string textual, float x, float y, float z, float scale, float angle, float rotationX, float rotationY, float rotationZ, bool flip, bool ground, NifGeometry relative)
 {
     MeshID = meshId;
     ID = id;
     FileName = file;
     TextualName = textual;
     X = x;
     Y = y;
     Z = z;
     Scale = scale;
     Angle = angle;
     RotationX = rotationX;
     RotationY = rotationY;
     RotationZ = rotationZ;
     Flip = flip;
     OnGround = ground;
     RelativeTo = relative;
 }