Example #1
0
        public static MotionTable Get(uint motionTableID)
        {
            //return ObjCache.GetMotionTable(mtableID);
            var motionTable = new MotionTable(DatManager.PortalDat.ReadFromDat <DatLoader.FileTypes.MotionTable>(motionTableID));

            return(motionTable);
        }
Example #2
0
 public bool SetMotionTableID(uint mtableID)
 {
     Table = MotionTable.Get(mtableID);
     return(Table != null);
 }