| 554 | } |
| 555 | |
| 556 | void FakeCSharpScript::get_script_signal_list(List<MethodInfo> *r_signals) const { |
| 557 | for (const KeyValue<StringName, MethodInfo> &E : _signals) { |
| 558 | r_signals->push_back(E.value); |
| 559 | } |
| 560 | auto parent_script = get_base_script(); |
| 561 | if (parent_script.is_valid()) { |
| 562 | parent_script->get_script_signal_list(r_signals); |
| 563 | } |
| 564 | } |
| 565 | |
| 566 | bool FakeCSharpScript::get_property_default_value(const StringName &p_property, Variant &r_value) const { |
| 567 | if (member_default_values.has(p_property)) { |