예제 #1
0
        public void Load(Stream stream)
        {
            this.Label = FileInfo.FileName;
            Tag        = this;
            Header     = DAE.Read(stream, FileInfo.FilePath);

            var model = ToGeneric();

            Header.Models[0].Skeleton.Reset();
            foreach (var child in model.CreateTreeHiearchy().Children)
            {
                AddChild(child);
            }
        }
예제 #2
0
 public void Load(Stream stream)
 {
     this.Label = FileInfo.FileName;
     Tag        = this;
     Header     = DAE.Read(stream);
 }