我使用下面的代码在Unity上创建了一个DialogueBox。
div::after {
content: "";
// Add your background image here
background: url("https://upload.wikimedia.org/wikipedia/commons/2/29/Example_image_not_be_used_in_article_namespace.jpg");
opacity: 0.5;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}
现在,我不知道如何关闭它?即使右上角的EditorUtility.DisplayDialog("Provided Data is Wrong","Please Correct the Erors","Retry");
按钮也无法关闭它。
我该怎么办?