Closed RedHaze closed 5 months ago
In #62, the following was added when grabbing PoseData:
PoseData
if (pose_data := meta.get("PoseData") and imported_mesh is not None):
This actually sets pose_data to a boolean value which later results in the error:
pose_data
[FNPORTING] Failed to import PoseAsset data from ...: 'bool' object is not iterable
This PR performs the check outside of the context of the variable set.
In #62, the following was added when grabbing
PoseData
:This actually sets
pose_data
to a boolean value which later results in the error:This PR performs the check outside of the context of the variable set.