Bastien Montagne mont29
  • Amsterdam, The Netherlands
  • Blender developer, mainly focused on 'Core' module.

  • Joined on 2010-10-07
Bastien Montagne created pull request blender/blender#105185 2023-02-24 17:07:48 +01:00
#99807: Add support for exporting to USDZ - ultimate fixes
Bastien Montagne pushed to usdz_export_fixes at mont29/blender 2023-02-24 17:05:04 +01:00
d6574cf22d Fixes to USDZ export before merge.
373e87649f Merge branch 'main' into F-pr-104556
Compare 2 commits »
Bastien Montagne created branch usdz_export_fixes in mont29/blender 2023-02-24 17:05:04 +01:00
Bastien Montagne commented on pull request blender/blender#104556 2023-02-24 16:22:29 +01:00
T99807: Add support for exporting to USDZ

Same issue as noted above regarding not using return value from BLI_current_working_dir().

Bastien Montagne approved blender/blender#104556 2023-02-24 16:22:29 +01:00
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...

Bastien Montagne commented on pull request blender/blender#104556 2023-02-24 16:22:28 +01:00
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.

Bastien Montagne commented on pull request blender/blender#104556 2023-02-24 15:29:20 +01:00
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...

Bastien Montagne pushed to main at mont29/blender-addons 2023-02-24 15:14:24 +01:00
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
Compare 7 commits »
Bastien Montagne pushed to main at mont29/blender 2023-02-24 15:14:22 +01:00
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).
Compare 44 commits »
Bastien Montagne commented on pull request blender/blender#104556 2023-02-24 15:13:28 +01:00
T99807: Add support for exporting to USDZ
Bastien Montagne deleted branch dp_fix_#105011 from pioverfour/blender 2023-02-24 12:00:49 +01:00
Bastien Montagne closed issue blender/blender#105011 2023-02-24 12:00:33 +01:00
Cannot remove user preset when its name is translated
Bastien Montagne merged pull request blender/blender#105155 2023-02-24 12:00:31 +01:00
Fix #105011: Cannot remove user preset when its name is translated
Bastien Montagne pushed to blender-v3.5-release at blender/blender 2023-02-24 12:00:30 +01:00
47d4ec5aef Fix #105011: Cannot remove user preset when its name is translated
Bastien Montagne commented on pull request blender/blender#104556 2023-02-24 11:57:02 +01:00
T99807: Add support for exporting to USDZ
Bastien Montagne commented on pull request blender/blender#105085 2023-02-23 18:24:32 +01:00
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…