add popup menu to allow python scripts to show popups without having to define a menu class first.

This commit is contained in:
Campbell Barton
2013-06-01 04:06:38 +00:00
parent 0ad88d1001
commit 2d4a682a8e
7 changed files with 101 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
"""
Popup Menus
+++++++++++
Popup menus can be useful for creating menus without having to register menu classes.
Note that they will not block the scripts execution, so the caller can't wait for user input.
"""
import bpy
def draw(self, context):
self.layout.label("Hello World")
bpy.context.window_manager.popup_menu(draw, title="Greeting", icon='INFO')