You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When exporting a mesh with non-1 scale I get the following error:
Error: Python: Traceback (most recent call last):
File "C:\path\to\Capsule\export_operators.py", line 169, in execute
PerformExportTask(context, export_task, export_stats)
File "C:\path\to\Capsule\export_operators.py", line 372, in PerformExportTask
export_task['armature_record'] = record_utils.MuteArmatureConstraints(context)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\path\to\Capsule\tk_utils\record.py", line 357, in MuteArmatureConstraints
object_transform.MoveBone(item, bone, context, entry['true_location'])
File "C:\path\to\Capsule\tk_utils\object_transform.py", line 197, in MoveBone
bpy.ops.transform.translate(
File "C:\path\to\Blender\4.2\scripts\modules\bpy\ops.py", line 109, in __call__
ret = _op_call(self.idname_py(), kw)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: Converting py args to operator properties: TRANSFORM_OT_translate.use_proportional_edit expected True/False or 0/1, not str
The fix is relatively simple. On line 202 change use_proportional_edit= 'DISABLED', to use_proportional_edit= False,
The text was updated successfully, but these errors were encountered:
Blender 4.2.2 LTS, Capsule 1.4.2.
When exporting a mesh with non-1 scale I get the following error:
The fix is relatively simple. On line 202 change
use_proportional_edit= 'DISABLED',
touse_proportional_edit= False,
The text was updated successfully, but these errors were encountered: