Skip to content
Snippets Groups Projects
Commit 1c8e7f12 authored by Julien Duroure's avatar Julien Duroure
Browse files

Merge branch 'blender-v3.2-release'

parents c28c92c1 2183b1d2
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
bl_info = { bl_info = {
'name': 'glTF 2.0 format', 'name': 'glTF 2.0 format',
'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors', 'author': 'Julien Duroure, Scurest, Norbert Nopper, Urs Hanselmann, Moritz Becher, Benjamin Schmithüsen, Jim Eckerlein, and many external contributors',
"version": (3, 3, 2), "version": (3, 3, 3),
'blender': (3, 3, 0), 'blender': (3, 3, 0),
'location': 'File > Import-Export', 'location': 'File > Import-Export',
'description': 'Import-Export as glTF 2.0', 'description': 'Import-Export as glTF 2.0',
......
...@@ -5,7 +5,7 @@ from .gltf2_blender_animation_node import BlenderNodeAnim ...@@ -5,7 +5,7 @@ from .gltf2_blender_animation_node import BlenderNodeAnim
from .gltf2_blender_animation_weight import BlenderWeightAnim from .gltf2_blender_animation_weight import BlenderWeightAnim
from .gltf2_blender_animation_utils import simulate_stash, restore_animation_on_object from .gltf2_blender_animation_utils import simulate_stash, restore_animation_on_object
from .gltf2_blender_vnode import VNode from .gltf2_blender_vnode import VNode
from io_scene_gltf2.io.imp.gltf2_io_user_extensions import import_user_extensions
class BlenderAnimation(): class BlenderAnimation():
"""Dispatch Animation to node or morph weights animation.""" """Dispatch Animation to node or morph weights animation."""
...@@ -20,6 +20,8 @@ class BlenderAnimation(): ...@@ -20,6 +20,8 @@ class BlenderAnimation():
# Things we need to stash when we're done. # Things we need to stash when we're done.
gltf.needs_stash = [] gltf.needs_stash = []
import_user_extensions('gather_import_animation_before_hook', gltf, anim_idx)
for vnode_id in gltf.vnodes: for vnode_id in gltf.vnodes:
if isinstance(vnode_id, int): if isinstance(vnode_id, int):
BlenderNodeAnim.anim(gltf, anim_idx, vnode_id) BlenderNodeAnim.anim(gltf, anim_idx, vnode_id)
...@@ -30,6 +32,8 @@ class BlenderAnimation(): ...@@ -30,6 +32,8 @@ class BlenderAnimation():
for (obj, action) in gltf.needs_stash: for (obj, action) in gltf.needs_stash:
simulate_stash(obj, track_name, action) simulate_stash(obj, track_name, action)
import_user_extensions('gather_import_animation_after_hook', gltf, anim_idx, track_name)
@staticmethod @staticmethod
def restore_animation(gltf, animation_name): def restore_animation(gltf, animation_name):
"""Restores the actions for an animation by its track name.""" """Restores the actions for an animation by its track name."""
......
...@@ -20,6 +20,7 @@ class BlenderNodeAnim(): ...@@ -20,6 +20,7 @@ class BlenderNodeAnim():
"""Manage animation targeting a node's TRS.""" """Manage animation targeting a node's TRS."""
animation = gltf.data.animations[anim_idx] animation = gltf.data.animations[anim_idx]
node = gltf.data.nodes[node_idx] node = gltf.data.nodes[node_idx]
if anim_idx not in node.animations.keys(): if anim_idx not in node.animations.keys():
return return
......
...@@ -58,6 +58,16 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob): ...@@ -58,6 +58,16 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob):
"""Put all primitive data into the mesh.""" """Put all primitive data into the mesh."""
pymesh = gltf.data.meshes[mesh_idx] pymesh = gltf.data.meshes[mesh_idx]
# Use a class here, to be able to pass data by reference to hook (to be able to change them inside hook)
class IMPORT_mesh_options:
def __init__(self, skinning: bool = True, skin_into_bind_pose: bool = True, use_auto_smooth: bool = True):
self.skinning = skinning
self.skin_into_bind_pose = skin_into_bind_pose
self.use_auto_smooth = use_auto_smooth
mesh_options = IMPORT_mesh_options()
import_user_extensions('gather_import_mesh_options', gltf, mesh_options, pymesh, skin_idx)
# Scan the primitives to find out what we need to create # Scan the primitives to find out what we need to create
has_normals = False has_normals = False
...@@ -135,6 +145,8 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob): ...@@ -135,6 +145,8 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob):
print_console('INFO', 'Draco Decoder: Decode primitive {}'.format(pymesh.name or '[unnamed]')) print_console('INFO', 'Draco Decoder: Decode primitive {}'.format(pymesh.name or '[unnamed]'))
decode_primitive(gltf, prim) decode_primitive(gltf, prim)
import_user_extensions('gather_import_decode_primitive', gltf, pymesh, prim, skin_idx)
if prim.indices is not None: if prim.indices is not None:
indices = BinaryData.decode_accessor(gltf, prim.indices) indices = BinaryData.decode_accessor(gltf, prim.indices)
indices = indices.reshape(len(indices)) indices = indices.reshape(len(indices))
...@@ -240,7 +252,7 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob): ...@@ -240,7 +252,7 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob):
for sk_locs in sk_vert_locs: for sk_locs in sk_vert_locs:
gltf.locs_batch_gltf_to_blender(sk_locs) gltf.locs_batch_gltf_to_blender(sk_locs)
if num_joint_sets: if num_joint_sets and mesh_options.skin_into_bind_pose:
skin_into_bind_pose( skin_into_bind_pose(
gltf, skin_idx, vert_joints, vert_weights, gltf, skin_idx, vert_joints, vert_weights,
locs=[vert_locs] + sk_vert_locs, locs=[vert_locs] + sk_vert_locs,
...@@ -286,14 +298,14 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob): ...@@ -286,14 +298,14 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob):
if layer is None: if layer is None:
print("WARNING: Vertex colors are ignored because the maximum number of vertex color layers has been " print("WARNING: Vertex colors are ignored because the maximum number of vertex color layers has been "
"reached.") "reached.")
break break
mesh.color_attributes[layer.name].data.foreach_set('color', squish(loop_cols[col_i])) mesh.color_attributes[layer.name].data.foreach_set('color', squish(loop_cols[col_i]))
# Skinning # Skinning
# TODO: this is slow :/ # TODO: this is slow :/
if num_joint_sets: if num_joint_sets and mesh_options.skinning:
pyskin = gltf.data.skins[skin_idx] pyskin = gltf.data.skins[skin_idx]
for i, node_idx in enumerate(pyskin.joints): for i, node_idx in enumerate(pyskin.joints):
bone = gltf.vnodes[node_idx] bone = gltf.vnodes[node_idx]
...@@ -340,7 +352,7 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob): ...@@ -340,7 +352,7 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob):
if prim.material is not None: if prim.material is not None:
# Get the material # Get the material
pymaterial = gltf.data.materials[prim.material] pymaterial = gltf.data.materials[prim.material]
vertex_color = 'COLOR_0' if 'COLOR_0' in prim.attributes else None vertex_color = 'COLOR_0' if ('COLOR_0' in prim.attributes) else None
if vertex_color not in pymaterial.blender_material: if vertex_color not in pymaterial.blender_material:
BlenderMaterial.create(gltf, prim.material, vertex_color) BlenderMaterial.create(gltf, prim.material, vertex_color)
material_name = pymaterial.blender_material[vertex_color] material_name = pymaterial.blender_material[vertex_color]
...@@ -374,7 +386,7 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob): ...@@ -374,7 +386,7 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob):
if has_normals: if has_normals:
mesh.create_normals_split() mesh.create_normals_split()
mesh.normals_split_custom_set_from_vertices(vert_normals) mesh.normals_split_custom_set_from_vertices(vert_normals)
mesh.use_auto_smooth = True mesh.use_auto_smooth = mesh_options.use_auto_smooth
def points_edges_tris(mode, indices): def points_edges_tris(mode, indices):
......
...@@ -57,6 +57,15 @@ class BlenderScene(): ...@@ -57,6 +57,15 @@ class BlenderScene():
@staticmethod @staticmethod
def create_animations(gltf): def create_animations(gltf):
"""Create animations.""" """Create animations."""
# Use a class here, to be able to pass data by reference to hook (to be able to change them inside hook)
class IMPORT_animation_options:
def __init__(self, restore_first_anim: bool = True):
self.restore_first_anim = restore_first_anim
animation_options = IMPORT_animation_options()
import_user_extensions('gather_import_animations', gltf, gltf.data.animations, animation_options)
if gltf.data.animations: if gltf.data.animations:
# NLA tracks are added bottom to top, so create animations in # NLA tracks are added bottom to top, so create animations in
# reverse so the first winds up on top # reverse so the first winds up on top
...@@ -64,8 +73,9 @@ class BlenderScene(): ...@@ -64,8 +73,9 @@ class BlenderScene():
BlenderAnimation.anim(gltf, anim_idx) BlenderAnimation.anim(gltf, anim_idx)
# Restore first animation # Restore first animation
anim_name = gltf.data.animations[0].track_name if animation_options.restore_first_anim:
BlenderAnimation.restore_animation(gltf, anim_name) anim_name = gltf.data.animations[0].track_name
BlenderAnimation.restore_animation(gltf, anim_name)
@staticmethod @staticmethod
def select_imported_objects(gltf): def select_imported_objects(gltf):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment