Thomas Barlow Mysteryem
  • Joined on 2023-02-10
Thomas Barlow commented on issue blender/blender#113780 2023-10-16 19:38:43 +02:00
Label text mark Background color in addon same as selected column

Could be a duplicate of #113683. Try resetting your theme in 4.0 and see if it fixes the UI colors.

Thomas Barlow commented on pull request blender/blender-addons#104956 2023-10-16 07:20:36 +02:00
FBX IO: Fix error importing BlendShapeChannels with extraneous FullWeights

When merging this with !104954, the sets can be replaced with lists because only unique Shapes will be found.

Thomas Barlow commented on pull request blender/blender-addons#104956 2023-10-16 07:17:24 +02:00
FBX IO: Fix error importing BlendShapeChannels with extraneous FullWeights

The short of it is that while we could allow each in-between shape to be imported as a separate shape key right now, any imported animations of the DeformPercent of the BlendShapeChannel the Shapes belong to will not work correctly and the FullWeights value for each Shape will be lost. I think the minimum for in-between shapes support would be importing them and their animations correctly.

Thomas Barlow commented on pull request blender/blender-addons#104956 2023-10-16 07:04:23 +02:00
FBX IO: Fix error importing BlendShapeChannels with extraneous FullWeights

I'm not very happy about this possible false positive.

Thomas Barlow created pull request blender/blender-addons#104956 2023-10-16 06:38:18 +02:00
WIP: Fix error importing FBX BlendShapeChannels with extraneous FullWeights
4930034304 Fix error importing BlendShapeChannels with extraneous FullWeights
Thomas Barlow created branch fbx_fix_extra_fullweights_error in Mysteryem/blender-addons 2023-10-16 06:32:38 +02:00
Thomas Barlow commented on issue blender/blender-addons#104953 2023-10-16 04:43:50 +02:00
FBX importer fails when importing from a junction or symlink location.

The error has occurred in the bpy.path module called from the bpy_extras.image_utils module, both of which are part of Blender's Python API and not the FBX importer, so I think it's likely…

Thomas Barlow commented on issue blender/blender#113732 2023-10-15 20:27:35 +02:00
Python UI inconsistent with the documentation

Hmm, I wouldn't have expected that calling bpy.ops.object.bake() would use any of the bpy.context.scene.render.bake.normal_g and similar properties because the default execution context for…

Thomas Barlow commented on issue blender/blender#113745 2023-10-15 19:27:51 +02:00
No PointerProperty for the bpy.types.NodeTreeInterfacePanel into Blender 4.0

Usually I would only expect ID, Bone and PoseBone subclasses to accept custom property definitions because the documentation only specifies those: https://docs.blender.org/api/4.0/bpy.props.h

Thomas Barlow commented on issue blender/blender-addons#104953 2023-10-15 14:26:55 +02:00
FBX importer fails when importing from a junction or symlink location.

Importing through a symlink works fine here, please post the full error.

Thomas Barlow commented on issue blender/blender#113732 2023-10-15 05:29:21 +02:00
Python UI inconsistent with the documentation

Calling bpy.ops.object.bake() will use the default value of its type argument which is 'COMBINED'.

Setting scene.cycles.bake_type changes the type argument of the bpy.ops.object.bake

Thomas Barlow created pull request blender/blender-addons#104954 2023-10-15 05:02:23 +02:00
Fix duplicate shape key import when the FBX connections are duplicated
31157d409d Deduplicate shape key connection iteration code
b2cfaa146d Fix duplicate shape key import when FBX connections are duplicated
Compare 2 commits »
6907072f7d Deduplicate shape key connection iteration code
ae26bc3f56 Fix duplicate shape key import when FBX connections are duplicated
Compare 2 commits »
Thomas Barlow pushed to blender-v4.0-release at Mysteryem/blender-addons 2023-10-15 00:22:36 +02:00
461e0c3e1e FBX IO: Speed up animation simplification using NumPy
c4b070f311 Import_3ds: Changed node order
f46fda60f2 Import_3ds: Moved specular texture node
a5c646a1d3 Export_3ds: Fixed NoneType error in ambient animation export
25697d80c2 Fix incorrect merged weights from ignored bones in FBX import
Compare 5 commits »
Thomas Barlow opened issue blender/blender#113683 2023-10-13 17:07:41 +02:00
Blender Dark theme imported from 3.6.4 results in same colour for UIList active item and text selection
Thomas Barlow commented on issue blender/blender#113629 2023-10-13 01:59:01 +02:00
Unity throws "Blender could not convert the .blend file to FBX file."

The attached .blend works for me with Blender 3.6.4 and Unity 2019.4.31f1.

Make sure your Blender 3.6.4 installation is the default Blender installation for your system.

If you open the…

Thomas Barlow commented on issue blender/blender-addons#104698 2023-10-13 00:20:26 +02:00
FBX In-between Blend Shapes support

Another advantage of using drivers and an extra 'controller' Shape Key when importing in-between shapes is that it would simplify the import of animations and default values.

If the 'controller'…