UE对话框

Posted luxishi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UE对话框相关的知识,希望对你有一定的参考价值。

    // Put your "OnButtonClicked" stuff here
    FText DialogText = FText::Format(
                            LOCTEXT("PluginButtonDialogText", "Add code to {0} in {1} to override this button‘s actions"),
                            FText::FromString(TEXT("FTestButtonModule::PluginButtonClicked()")),
                            FText::FromString(TEXT("TestButton.cpp"))
                       );
    FMessageDialog::Open(EAppMsgType::Ok, DialogText);

 

以上是关于UE对话框的主要内容,如果未能解决你的问题,请参考以下文章