Is it possible to create a dialog window outside the main window?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By newold

When you display a window dialog, this window is bounded to the main window (i use popup_centered to show my window).

is it possible to create a dialog window outside the main window? how?

Code:

var dlg = $MyWindow
dlg.popup_centered()
yield($MyWindow, “OK”)
return $MyWindow.result

:bust_in_silhouette: Reply From: BraindeadBZH

I don’t think this is possible as Godot only support a single window.