Esempio n. 1
0
/*! NIFLIB_HIDDEN function.  For internal use only. */
        internal override void FixLinks(Dictionary <uint, NiObject> objects, List <uint> link_stack, List <NiObject> missing_link_stack, NifInfo info)
        {
            base.FixLinks(objects, link_stack, missing_link_stack, info);
            if (((shapeType == 5) || (shapeType == 6)))
            {
                mesh = FixLink <NiPhysXMeshDesc>(objects, link_stack, missing_link_stack, info);
            }
        }
Esempio n. 2
0
 public NiPhysXShapeDesc()
 {
     shapeType      = (NxShapeType)0;
     shapeFlags     = (uint)0;
     collisionGroup = (ushort)0;
     materialIndex  = (ushort)0;
     density        = 0.0f;
     mass           = 0.0f;
     skinWidth      = 0.0f;
     non_interactingCompartmentTypes = (uint)0;
     sphereRadius = 0.0f;
     mesh         = null;
 }