编辑器扩展:消息窗口
前言
自定义和扩展消息窗口


消息窗口
先看两个枚举
| 1 | namespace EAppMsgType | 
| 1 | namespace EAppReturnType | 
前者为输入,后者会返回
可以通过返回类型的不同来做不同的逻辑
| 1 | EAppReturnType::Type ReturnType = FMessageDialog::Open(EAppMsgType::OkCancel, DialogText); | 
- 强行封装蓝图库
| 1 | UENUM(BlueprintType) | 
| 1 | EMsgRetType UFlib_IO::OpenMessageWindow(EMsgType Type, FText Msg) | 
