Skip to content

Commit 193ff0a

Browse files
committed
Renamed symbol
1 parent 65d1c12 commit 193ff0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bseq/importer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ def create_obj(fileseq, use_relative, root_path, transform_matrix=Matrix([[1, 0,
211211
filepath = fileseq[current_frame % len(fileseq)]
212212

213213
#.obj sequences have to be handled differently
214-
isObj = filepath.endswith(".obj")
215-
if isObj and bpy.context.scene.BSEQ.use_blender_obj_import:
214+
is_obj_seq = filepath.endswith(".obj")
215+
if is_obj_seq and bpy.context.scene.BSEQ.use_blender_obj_import:
216216
bpy.ops.import_scene.obj(filepath=filepath)
217217
enabled = True
218218

@@ -254,7 +254,7 @@ def create_obj(fileseq, use_relative, root_path, transform_matrix=Matrix([[1, 0,
254254
object.matrix_world = transform_matrix
255255
driver = object.driver_add("BSEQ.frame")
256256
driver.driver.expression = 'frame'
257-
if enabled and not isObj:
257+
if enabled and not is_obj_seq:
258258
update_mesh(meshio_mesh, object.data)
259259
bpy.context.collection.objects.link(object)
260260
bpy.ops.object.select_all(action="DESELECT")

0 commit comments

Comments
 (0)