protected void PrintFbxIOBase(FbxIOBase obj, TextWriter writer)
        {
            _PrintFbxIOBase(obj, writer);

            if (obj is FbxImporter)
            {
                PrintFbxImporter((FbxImporter)obj, writer);
            }
        }
Example #2
0
        protected void AcceptFbxIOBase(FbxIOBase obj, ISet <object> visitedObjects = null)
        {
            Visit(obj);

            _AcceptFbxIOBase(obj, visitedObjects);

            if (obj is FbxImporter)
            {
                AcceptFbxImporter((FbxImporter)obj, visitedObjects);
            }
        }
Example #3
0
 protected void _AcceptFbxIOBase(FbxIOBase obj, ISet <object> visitedObjects)
 {
     throw new NotImplementedException();
 }
Example #4
0
 public virtual void Visit(FbxIOBase obj)
 {
 }
Example #5
0
 protected void _PrintFbxIOBase(FbxIOBase obj, TextWriter writer)
 {
     throw new NotImplementedException();
 }