Block a user
#99807: Add support for exporting to USDZ - ultimate fixes
d6574cf22d
Fixes to USDZ export before merge.
373e87649f
Merge branch 'main' into F-pr-104556
T99807: Add support for exporting to USDZ
Same issue as noted above regarding not using return value from BLI_current_working_dir()
.
T99807: Add support for exporting to USDZ
Issues noted below are fairly bad (as in, obvious mistakes and potential source of bugs), would be good to check at compiler warnings when building...
T99807: Add support for exporting to USDZ
This line and the one above are not properly using the API, which expect you to use the returned char pointer.
T99807: Add support for exporting to USDZ
This is utterly incorrect, usdz_filepath
is always true
by definition... you want to check usdz_filepath[0] != '\0'
here...
0691f78e0b
Fix #104431: Pie Menu Editor Switch: Can't switch to File Browser
625e86b971
Merge branch 'blender-v3.5-release'
14b248aac0
Cleanup: fix a few issues in UI messages
22c9561360
Merge branch 'blender-v3.5-release'
afed066115
glTF exporter: typo in morph tangent export
d5e45c8b92
Merge branch 'blender-v3.5-release'
b8359ede7d
Fix #105168: Entering vertexpaint creates a non-default color attribute
ac93598dd1
Fix #105011: Cannot remove user preset when its name is translated
47d4ec5aef
Fix #105011: Cannot remove user preset when its name is translated
718f78cfca
Sculpt: Fix #104618 (again).
Cannot remove user preset when its name is translated
Fix #105011: Cannot remove user preset when its name is translated
WIP: Add a mechanism to abort a blend file reading on critical error.
@brecht this is certainly possible, but it will then become way more verbose and intrusive, since basically each level of the call stack would need to periodically check the error status/flag to…