Godot - Display Alert
GDScript code example to display an alert.
OS.alert()
displays OS modal dialog box.
Game is paused until dialog is closed.
Can specify message (required) in first argument, alert title (optional) in second argument.
OS.alert("Message", "Title")