This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/release/scripts/add_mesh_empty.py
2007-06-28 08:33:04 +00:00

13 lines
169 B
Python

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