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

Add support for _to_string virtual function overwrite in Pluginscript

This commit is contained in:
Emmanuel Leblond
2021-03-27 21:13:51 +01:00
parent a82765a464
commit 9761bab753
3 changed files with 9 additions and 0 deletions

View File

@@ -93,6 +93,13 @@ void PluginScriptInstance::notification(int p_notification) {
_desc->notification(_data, p_notification);
}
String PluginScriptInstance::to_string(bool *r_valid) {
godot_string ret = _desc->to_string(_data, r_valid);
String str_ret = *(String *)&ret;
godot_string_destroy(&ret);
return str_ret;
}
Vector<ScriptNetData> PluginScriptInstance::get_rpc_methods() const {
return _script->get_rpc_methods();
}