10 lines
275 B
Python
10 lines
275 B
Python
import bpy
|
|
from bpy_extras.io_utils import unpack_list
|
|
|
|
def ShowMessageBox(message = "", title = "Message Box", icon = 'INFO'):
|
|
|
|
def draw(self, context):
|
|
self.layout.label(text=message)
|
|
|
|
bpy.context.window_manager.popup_menu(draw, title = title, icon = icon)
|