Esempio n. 1
0
 public ModelContainer()
 {
     ImageKey         = "folder";
     SelectedImageKey = "folder";
     nud     = new NUD();
     nut     = new NUT();
     mta     = new MTA();
     MOI     = new MOI();
     jtb     = new JTB();
     XMB     = new XMBFile();
     Checked = true;
     Refresh();
 }
Esempio n. 2
0
 public void OpenSkeleton(string pathVBN, string pathJTB, string pathSB)
 {
     if (string.IsNullOrEmpty(pathVBN))
     {
         return;
     }
     VBN = new VBN(pathVBN);
     if (!string.IsNullOrEmpty(pathJTB))
     {
         JTB = new JTB(pathJTB);
     }
     if (!string.IsNullOrEmpty(pathSB))
     {
         VBN.SwingBones.Read(pathSB);
     }
 }