diff --git a/port/PyAssimp/pyassimp/core.py b/port/PyAssimp/pyassimp/core.py index 4668eeda2..64dd351a7 100644 --- a/port/PyAssimp/pyassimp/core.py +++ b/port/PyAssimp/pyassimp/core.py @@ -370,7 +370,7 @@ def export_blob(scene, pyassimp.postprocess.aiProcess_OptimizeMeshes) Returns --------- - ExportBlob + Pointer to structs.ExportDataBlob ''' from ctypes import pointer exportBlobPtr = _assimp_lib.export_blob(pointer(scene), file_type.encode("ascii"), processing) diff --git a/port/PyAssimp/pyassimp/structs.py b/port/PyAssimp/pyassimp/structs.py index 8a75c1e46..ddfd87f8a 100644 --- a/port/PyAssimp/pyassimp/structs.py +++ b/port/PyAssimp/pyassimp/structs.py @@ -999,6 +999,8 @@ class Animation(Structure): class ExportDataBlob(Structure): """ See 'cexport.h' for details. + + Note that the '_fields_' definition is outside the class to allow the 'next' field to be recursive """ pass