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

fix get_meta() with defalt value

This commit is contained in:
Univeous
2022-05-24 20:23:08 +08:00
parent 5f9bc7ea5a
commit e514cd71b1

View File

@@ -1062,7 +1062,6 @@ void Object::set_meta(const String &p_name, const Variant &p_value) {
}
Variant Object::get_meta(const String &p_name, const Variant &p_default) const {
ERR_FAIL_COND_V(!metadata.has(p_name), Variant());
if (!metadata.has(p_name)) {
if (p_default != Variant()) {
return p_default;