You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When exporting the game with Godot 4.3 as Webexport and starting the game in the browser there occurs an error. It looks for the to_string function but can not find it.
Options -> Extensions-Support: on -> Export Project ...
Run game in browser
Error in Console:
LinkError: imported function 'env._ZNSt3__29to_stringEx' signature mismatch
OS: Windows, Firefox 134.0.2
Godot Version: 4.3 (August 2024)
Dialogic Version: 2.0-Alpha-16
Unfortunately not quite sure where the conversion happens and why the function is not added to the Webassembly. Without Dialogic Export is running. Could also be a Godot 4.3 issue.
The text was updated successfully, but these errors were encountered:
When exporting the game with Godot 4.3 as Webexport and starting the game in the browser there occurs an error. It looks for the to_string function but can not find it.
I could find them in the following files:
In the code the following is present:
func _to_string() -> String:
return "[{name}:{id}]".format({"name":get_character_name(), "id":get_instance_id()})
Steps to reproduce the behavior:
Error in Console:
LinkError: imported function 'env._ZNSt3__29to_stringEx' signature mismatch
Unfortunately not quite sure where the conversion happens and why the function is not added to the Webassembly. Without Dialogic Export is running. Could also be a Godot 4.3 issue.
The text was updated successfully, but these errors were encountered: