Fix metadata property type declarations.

pull/2114/head
Wojciech Matyjewicz 2018-09-01 10:15:09 +02:00
parent 7004066532
commit 475ed6fdc3
1 changed files with 2 additions and 2 deletions

View File

@ -291,7 +291,7 @@ Node._fields_ = [
# Metadata associated with this node or NULL if there is no metadata.
# Whether any metadata is generated depends on the source file format.
("mMetadata", POINTER(POINTER(Metadata))),
("mMetadata", POINTER(Metadata)),
]
class Light(Structure):
@ -939,7 +939,7 @@ class Scene(Structure):
# This data contains global metadata which belongs to the scene like
# unit-conversions, versions, vendors or other model-specific data. This
# can be used to store format-specific metadata as well.
("mMetadata", POINTER(POINTER(Metadata))),
("mMetadata", POINTER(Metadata)),
]
assimp_structs_as_tuple = (Matrix4x4,