chore(tools/gltf_auto_export): fixed missing version bump & minor cleanup (#120)

This commit is contained in:
Mark Moissette 2024-02-06 09:46:55 +01:00 committed by GitHub
parent cfbda24da7
commit 537f08b959
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,7 @@
bl_info = {
"name": "gltf_auto_export",
"author": "kaosigh",
"version": (0, 11, 0),
"version": (0, 12, 0),
"blender": (3, 4, 0),
"location": "File > Import-Export",
"description": "glTF/glb auto-export",
@ -77,7 +77,6 @@ def post_save(scene, depsgraph):
def register():
print("registering")
for cls in classes:
bpy.utils.register_class(cls)
# for some reason, adding these directly to the tracker class in register() do not work reliably
@ -97,5 +96,4 @@ def unregister():
if "gltf_auto_export" == "__main__":
print("foo")
register()
register()