| 70 | } |
| 71 | |
| 72 | bool DynamicComponentInfo::static_set(void *p_self, const DynamicComponentInfo *p_info, const StringName &p_name, const Variant &p_data) { |
| 73 | const uint32_t index = p_info->get_property_id(p_name); |
| 74 | return static_set(p_self, p_info, index, p_data); |
| 75 | } |
| 76 | |
| 77 | bool DynamicComponentInfo::static_get(const void *p_self, const DynamicComponentInfo *p_info, const StringName &p_name, Variant &r_data) { |
| 78 | const uint32_t index = p_info->get_property_id(p_name); |
nothing calls this directly
no test coverage detected