BallanceBlenderHelper/ballance_blender_plugin/utils.py

12 lines
316 B
Python
Raw Normal View History

2020-07-12 21:04:38 +08:00
import bpy
2020-09-03 13:57:06 +08:00
from bpy_extras.io_utils import unpack_list
2020-07-12 21:04:38 +08:00
2020-10-07 15:20:51 +08:00
def ShowMessageBox(message, title, icon):
2020-07-12 21:04:38 +08:00
def draw(self, context):
2020-10-07 15:20:51 +08:00
layout = self.layout
for item in message:
layout.label(text=item, translate=False)
2020-07-12 21:04:38 +08:00
2020-09-03 13:57:06 +08:00
bpy.context.window_manager.popup_menu(draw, title = title, icon = icon)