Merge branch 'blender-v3.4-release'

This commit is contained in:
Bastien Montagne 2022-11-16 18:07:40 +01:00
commit fdbbc147b7
1 changed files with 2 additions and 2 deletions

View File

@ -3563,8 +3563,8 @@ def load_web3d(
# Assign anim curves
node = defDict[key]
if node.blendData is None: # Add an object if we need one for animation
node.blendData = node.blendObject = bpy.data.objects.new('AnimOb', None) # , name)
bpycollection.objects.link(node.blendObject)
bpyob = node.blendData = node.blendObject = bpy.data.objects.new('AnimOb', None) # , name)
bpycollection.objects.link(bpyob)
bpyob.select_set(True)
if node.blendData.animation_data is None: