Ejemplo 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);
     nextController = FixLink <NiTimeController>(objects, link_stack, missing_link_stack, info);
     if (info.version >= 0x0303000D)
     {
         target = FixLink <NiObjectNET>(objects, link_stack, missing_link_stack, info);
     }
 }
Ejemplo n.º 2
0
 public NiTimeController()
 {
     nextController = null;
     flags          = (ushort)0;
     frequency      = 1.0f;
     phase          = 0.0f;
     startTime      = 3.402823466e+38f;
     stopTime       = -3.402823466e+38f;
     target         = null;
     unknownInteger = (uint)0;
 }