1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Update outdated syntax in JavaScriptBridge doc

According to `JavaScriptBridge`, thus takes a Callable, not an object/string pair.
This commit is contained in:
PoolloverNathan
2023-03-29 23:50:32 -04:00
committed by Rémi Verschelde
parent 8f25cc2d13
commit 04480f196a

View File

@@ -9,7 +9,7 @@
[codeblock]
extends Node
var _my_js_callback = JavaScriptBridge.create_callback(self, "myCallback") # This reference must be kept
var _my_js_callback = JavaScriptBridge.create_callback(myCallback) # This reference must be kept
var console = JavaScriptBridge.get_interface("console")
func _init():