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

C#: Implement ScriptInstance::to_string

Create a blacklist of methods that must not be generated. Includes: "to_string", "_to_string" and "_init".
This commit is contained in:
Ignacio Etcheverry
2019-05-24 00:40:16 +02:00
parent 9738ed567c
commit 04ebf294f3
4 changed files with 49 additions and 1 deletions

View File

@@ -261,6 +261,8 @@ public:
virtual void notification(int p_notification);
void _call_notification(int p_notification);
virtual String to_string(bool *r_valid);
virtual Ref<Script> get_script() const;
virtual ScriptLanguage *get_language();