| 1659 | } |
| 1660 | |
| 1661 | void Object::_set_indexed_bind(const NodePath &p_name, const Variant &p_value) { |
| 1662 | set_indexed(p_name.get_as_property_path().get_subnames(), p_value); |
| 1663 | } |
| 1664 | |
| 1665 | Variant Object::_get_indexed_bind(const NodePath &p_name) const { |
| 1666 | return get_indexed(p_name.get_as_property_path().get_subnames()); |
nothing calls this directly
no test coverage detected