Skip to content

Instantly share code, notes, and snippets.

@kellyegan
kellyegan / ExportAnimationAsSTLs.py
Created October 8, 2014 13:31
Blender addon to export each frame of an animation as an STL
bl_info = {
"name": "Export animation frames as mesh files",
"category": "Export",
}
import bpy
class frameExportMesh( bpy.types.Operator):
"""Export animation frames as mesh files."""
bl_idname = "frame.export_mesh"