Can I display a webpage in Godot?

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

I wonder if it’d be possible to nest a web browser inside Godot do allow interaction with a certain website.

:bust_in_silhouette: Reply From: Zylann

Probably not nest, but you can ask the OS to open a web page using OS.shell_open(url).

If you are feeling adventurous, you could use HTTPRequest and recreate a subset of HTML rendering by parsing its result with XMLParser and instancing controls into the scene, or create a module doing this with some third-party library maybe. But that’s way more involved :slight_smile: