Skip to content

Commit e99f151

Browse files
committed
Small fix
1 parent 0b9e602 commit e99f151

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bseq/importer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def create_meshio_obj(filepath):
208208

209209
# obj.name = os.path.basename(filepath)
210210
# return
211-
211+
212212
# create the object
213213
name = os.path.basename(filepath)
214214
mesh = bpy.data.meshes.new(name)
@@ -284,7 +284,7 @@ def create_obj(fileseq, root_path, transform_matrix=Matrix([[1, 0, 0, 0], [0, 1,
284284
object.matrix_world = transform_matrix
285285
driver = object.driver_add("BSEQ.frame")
286286
driver.driver.expression = 'frame'
287-
if enabled and not is_obj_seq:
287+
if enabled: # and not is_obj_seq:
288288
update_mesh(meshio_mesh, object.data)
289289
bpy.context.collection.objects.link(object)
290290
bpy.ops.object.select_all(action="DESELECT")

0 commit comments

Comments
 (0)