Merge pull request #1027 from Daylily-Zeleen/daylily-zeleen/fix_global_enum_cast

Fix global enum cast and add `Varint::Type`'s cast.
pull/975/head
Rémi Verschelde 2023-02-07 13:48:58 +01:00
commit 0704528b4c
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 7 additions and 1 deletions

View File

@ -1621,8 +1621,14 @@ def generate_global_constant_binds(api, output_dir):
if enum_def["name"].startswith("Variant."):
continue
if enum_def["is_bitfield"]:
header.append(f'VARIANT_BITFIELD_CAST(godot::{enum_def["name"]});')
else:
header.append(f'VARIANT_ENUM_CAST(godot::{enum_def["name"]});')
# Variant::Type is not a global enum, but only one line, it is worth to place in this file instead of creating new file.
header.append(f"VARIANT_ENUM_CAST(godot::Variant::Type);")
header.append("")
header.append(f"#endif // ! {header_guard}")