diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:31 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:31 -0600 |
commit | ea3154a0d4397fc68c2dc3874e1842dd8a6cffb2 (patch) | |
tree | 9be206ce53d64ae728c5290f4c0eaf70ce417e33 /tests/core | |
parent | 37305e40bcec774ad8d0948589f46f9f02be8c23 (diff) | |
parent | 03b05cf9acd69b7eeced919012c215b22cd901ab (diff) | |
download | redot-engine-ea3154a0d4397fc68c2dc3874e1842dd8a6cffb2.tar.gz |
Merge pull request #99424 from dalexeev/core-fix-builtin-enum-const-binds
Core: Fix built-in enum constant bindings
Diffstat (limited to 'tests/core')
-rw-r--r-- | tests/core/object/test_class_db.h | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/tests/core/object/test_class_db.h b/tests/core/object/test_class_db.h index 924e93129d..b38d3d3e61 100644 --- a/tests/core/object/test_class_db.h +++ b/tests/core/object/test_class_db.h @@ -863,16 +863,19 @@ void add_global_enums(Context &r_context) { } } - // HARDCODED - List<StringName> hardcoded_enums; - hardcoded_enums.push_back("Vector2.Axis"); - hardcoded_enums.push_back("Vector2i.Axis"); - hardcoded_enums.push_back("Vector3.Axis"); - hardcoded_enums.push_back("Vector3i.Axis"); - for (const StringName &E : hardcoded_enums) { - // These enums are not generated and must be written manually (e.g.: Vector3.Axis) - // Here, we assume core types do not begin with underscore - r_context.enum_types.push_back(E); + for (int i = 0; i < Variant::VARIANT_MAX; i++) { + if (i == Variant::OBJECT) { + continue; + } + + const Variant::Type type = Variant::Type(i); + + List<StringName> enum_names; + Variant::get_enums_for_type(type, &enum_names); + + for (const StringName &enum_name : enum_names) { + r_context.enum_types.push_back(Variant::get_type_name(type) + "." + enum_name); + } } } |