Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 8fa8d7e36a6..4a24beb36c1 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1440,10 +1440,6 @@ class VIEW3D_MT_object(Menu):
layout.separator()
- layout.menu("VIEW3D_MT_object_game")
-
- layout.separator()
-
layout.operator_menu_enum("object.convert", "target")
@@ -1810,26 +1806,6 @@ class VIEW3D_MT_make_links(Menu):
layout.operator("object.join_uvs") # stupid place to add this!
-class VIEW3D_MT_object_game(Menu):
- bl_label = "Game"
-
- def draw(self, context):
- layout = self.layout
-
- layout.operator("object.logic_bricks_copy", text="Copy Logic Bricks")
- layout.operator("object.game_physics_copy", text="Copy Physics Properties")
-
- layout.separator()
-
- layout.operator("object.game_property_copy", text="Replace Properties").operation = 'REPLACE'
- layout.operator("object.game_property_copy", text="Merge Properties").operation = 'MERGE'
- layout.operator_menu_enum("object.game_property_copy", "property", text="Copy Properties...")
-
- layout.separator()
-
- layout.operator("object.game_property_clear")
-
-
class VIEW3D_MT_brush(Menu):
bl_label = "Brush"
@@ -3927,7 +3903,6 @@ classes = (
VIEW3D_MT_object_quick_effects,
VIEW3D_MT_make_single_user,
VIEW3D_MT_make_links,
- VIEW3D_MT_object_game,
VIEW3D_MT_brush,
VIEW3D_MT_brush_paint_modes,
VIEW3D_MT_paint_vertex,