| 167 | virtual Variant call_const(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) override; // implement if language supports const functions |
| 168 | virtual void notification(int p_notification, bool p_reversed = false) override; |
| 169 | virtual String to_string(bool *r_valid) override { |
| 170 | if (r_valid) { |
| 171 | *r_valid = false; |
| 172 | } |
| 173 | return String(); |
| 174 | } |
| 175 | |
| 176 | //this is used by script languages that keep a reference counter of their own |
| 177 | //you can make Ref<> not die when it reaches zero, so deleting the reference |
no outgoing calls