Skip to content

Commit

Permalink
Fix ConvertToMeshSequence operator (#160)
Browse files Browse the repository at this point in the history
* Fix ConvertToMeshSequence operator

* Bump version
  • Loading branch information
Failxxx committed Jun 20, 2022
1 parent c8e4b43 commit 039ed1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"name": "Stop motion OBJ",
"description": "Import a sequence of OBJ (or STL or PLY or X3D) files and display them each as a single frame of animation. This add-on also supports the .STL, .PLY, and .X3D file formats.",
"author": "Justin Jensen",
"version": (2, 2, 0, "alpha.21"),
"version": (2, 2, 0, "alpha.22"),
"blender": (2, 83, 0),
"location": "File > Import > Mesh Sequence",
"warning": "",
Expand Down
2 changes: 1 addition & 1 deletion src/panels.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def execute(self, context):
return {'CANCELLED'}

# hijack the mesh from the selected object and add it to a new mesh sequence
msObj = newMeshSequence('emptyMesh')
msObj = newMeshSequence()
msObj.mesh_sequence_settings.isImported = False
addMeshToSequence(msObj, obj.data)

Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# (major, minor, revision, development)
# example dev version: (1, 2, 3, "beta.4")
# example release version: (2, 3, 4)
currentScriptVersion = (2, 2, 0, "alpha.21")
currentScriptVersion = (2, 2, 0, "alpha.22")
legacyScriptVersion = (2, 0, 2, "legacy")

0 comments on commit 039ed1f

Please sign in to comment.