Beispiel #1
0
 public void LoadPoseFile(string pose_file)
 {
     if (!string.IsNullOrEmpty(pose_file))
     {
         Console.WriteLine("Load File: " + pose_file);
         Tmo = TMOAnim.LoadPNGFile(Path.Combine(PoseRoot, pose_file));
         Tmo.LoadTransformationMatrixFromFrame(0);
     }
     Tmo.TruncateFrame(0); // forced pose
 }