BallanceBlenderHelper/ballance_blender_plugin/utils.py
2020-09-03 13:57:06 +08:00

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)