Skip to content
Snippets Groups Projects
Commit 96355d45 authored by Brendon Murphy's avatar Brendon Murphy
Browse files

Added newell teapot & easter egg (Spoon)

parent 1ac408a6
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
# ##### END GPL LICENSE BLOCK ##### # ##### END GPL LICENSE BLOCK #####
# Contributed to by # Contributed to by
# Pontiac, Fourmadmen, varkenvarken, tuga3d, meta-androcto, metalliandy, dreampainter & cotejrp1# # Pontiac, Fourmadmen, varkenvarken, tuga3d, meta-androcto, metalliandy, dreampainter & cotejrp1#
# Kayo Phoenix, Anthony D'Agostino#
bl_info = { bl_info = {
"name": "Extra Objects", "name": "Extra Objects",
...@@ -46,6 +45,7 @@ if "bpy" in locals(): ...@@ -46,6 +45,7 @@ if "bpy" in locals():
imp.reload(add_mesh_pyramid) imp.reload(add_mesh_pyramid)
imp.reload(add_mesh_torusknot) imp.reload(add_mesh_torusknot)
imp.reload(add_mesh_honeycomb) imp.reload(add_mesh_honeycomb)
imp.reload(add_mesh_teapot)
else: else:
from . import add_mesh_extra_objects from . import add_mesh_extra_objects
from . import add_mesh_twisted_torus from . import add_mesh_twisted_torus
...@@ -57,6 +57,7 @@ else: ...@@ -57,6 +57,7 @@ else:
from . import add_mesh_pyramid from . import add_mesh_pyramid
from . import add_mesh_torusknot from . import add_mesh_torusknot
from . import add_mesh_honeycomb from . import add_mesh_honeycomb
from . import add_mesh_teapot
import bpy import bpy
...@@ -160,6 +161,8 @@ class INFO_MT_mesh_misc_add(bpy.types.Menu): ...@@ -160,6 +161,8 @@ class INFO_MT_mesh_misc_add(bpy.types.Menu):
text="Step Pyramid") text="Step Pyramid")
layout.operator("mesh.honeycomb_add", layout.operator("mesh.honeycomb_add",
text="Honeycomb") text="Honeycomb")
layout.operator("mesh.primitive_teapot_add",
text="Teapot+")
# Register all operators and panels # Register all operators and panels
# Define "Extras" menu # Define "Extras" menu
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment