Add a WebView
node to your scene.
In the node inspector, you can configure things like the URL to browse, refresh-rate, zoom, etc.
Then, setup the following mouse actions; rmb
, lmb
, mwheeldown
, mwheelup
:
To display the webview in your Godot project, you have 3 options:
Below are the 2 easiest methods:
To render the webview fullscreen:
TextureRect
as a child-nodeTo render the webview onto a 3D plane:
MeshInstance3D
as a child-nodeMeshInstance3D
a PlaneMesh
in the inspectorThen, 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()
.
load()
will result in a pink texture._input
method of the WebView
.That's it!
This is the 'basic way' of using the webview, as it sets up mouse and keyboard event handlers automatically.
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.
For more information (manual setup), check out: