Properties of an object are available in javascript. For example, an example property of a Camera3D
is fov
.
In javascript, accessing, and changing property values should go through .value
:
window.addEventListener("godot.ready", event => {
// access
console.log("cool_property value: ", $g.example_obj.cool_property.value);
// write
$g.example_obj.cool_property.value = 42;
});
To detect updates from gdscript:
$g.example_obj.cool_variable.on("changed", (value) => {
console.log("new value: ", value);
});
To update a property, use the _webview_update
signal. It
takes a list of strings you'd like to update; the property names. In our case
the name is cool_variable
:
# update it
example_obj.cool_variable = 123
# commit change
example_obj.emit("_webview_update", ["cool_variable"])
In gdscript you can monitor when a property was updated from javascript, via the _webview_property_changed
signal.
example_obj.connect("_webview_property_changed", _on_webview_property_changed)
func _on_webview_property_changed(property_name: String):
pass