diff options
author | Daylily-Zeleen <daylily-zeleen@foxmail.com> | 2024-01-07 15:24:02 +0800 |
---|---|---|
committer | Daylily-Zeleen <daylily-zeleen@foxmail.com> | 2024-01-07 15:24:02 +0800 |
commit | bd40a94424ca91bc2d2bc76f2a02ac7f8bd5d3cf (patch) | |
tree | cc8772cb2ea089d8d78e12e00f31d916abeeb24c | |
parent | dd62b9685fbc9b733a25e26a788b5d7f3212a804 (diff) | |
download | redot-cpp-bd40a94424ca91bc2d2bc76f2a02ac7f8bd5d3cf.tar.gz |
Remove "godot" namespace when binding global constants.
-rw-r--r-- | binding_generator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binding_generator.py b/binding_generator.py index 478dafe..e0147ce 100644 --- a/binding_generator.py +++ b/binding_generator.py @@ -1778,9 +1778,9 @@ def generate_global_constant_binds(api, output_dir): continue if enum_def["is_bitfield"]: - header.append(f'VARIANT_BITFIELD_CAST(godot::{enum_def["name"]});') + header.append(f'VARIANT_BITFIELD_CAST({enum_def["name"]});') else: - header.append(f'VARIANT_ENUM_CAST(godot::{enum_def["name"]});') + header.append(f'VARIANT_ENUM_CAST({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);") |