Getting started (hello-world)

2025-03-28

Add a WebView node to your scene.

In the node inspector, you can configure things like the URL to browse, refresh-rate, zoom, etc.

Mouse actions

Then, setup the following mouse actions; rmb, lmb, mwheeldown, mwheelup:

2d or 3d?

To display the webview in your Godot project, you have 3 options:

  1. Render fullscreen
  2. Render on a 3D plane
  3. Handle it manually and render the texture on whatever you want

Below are the 2 easiest methods:

1. Render fullscreen

To render the webview fullscreen:

  1. Add a TextureRect as a child-node
  2. Configure an URL to browse to

2. Render onto a 3D plane

To render the webview onto a 3D plane:

  1. Add a MeshInstance3D as a child-node
  2. Give this MeshInstance3D a PlaneMesh in the inspector
  3. Configure an URL to browse to

Then, attach a script to your scene, with the following code:

func _ready():
    $WebView.connect("view_ready", _on_view_ready)

func _on_view_ready():
    $WebView.load()

view_ready is a signal that is emitted when the webview is ready, at which point we can call load().

That's it!

This is the 'basic way' of using the webview, as it sets up mouse and keyboard event handlers automatically.

Manual texture

If you do not add a MeshInstance3D or TextureRect as a child of the WebView node, you'll need to manually grab the texture, and create a StandardMaterial3D.

For example:

func _on_view_ready():
    if $WebView.load():
        # Create a material we can assign to, for example, meshes.
        var mat: StandardMaterial3D = StandardMaterial3D.new()
        mat.shading_mode = BaseMaterial3D.SHADING_MODE_UNSHADED
        mat.texture_repeat = false
        mat.albedo_texture_force_srgb = true
        mat.transparency = BaseMaterial3D.TRANSPARENCY_ALPHA
        # note; you may call `get_texture` multiple times, it returns the same texture
        mat.albedo_texture = $WebView.get_texture() 

This does not set up any mouse handlers, you will have to do this manually.

More information

For more information (manual setup), check out: