* adds EmptyMesh to the menu

This commit is contained in:
Nathan Letwory 2007-06-28 08:33:04 +00:00
parent 470dda4a21
commit 83c65e71e8

@ -0,0 +1,13 @@
#!BPY
"""
Name: 'Empty mesh'
Blender: 243
Group: 'AddMesh'
"""
import BPyAddMesh
import Blender
def main():
BPyAddMesh.add_mesh_simple('EmptyMesh', [], [], [])
main()