diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-15 17:35:58 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-15 17:35:58 +0100 |
commit | 6f805dee2a0d9d23a8365de0331479c8846bf298 (patch) | |
tree | bfe1b407b5f729ca566bf49cdd464827535cb0e6 /modules/gdscript/gdscript.h | |
parent | d48c450c62573b48ecc097b02a75421a6bbe1bac (diff) | |
parent | a2e3e31e8077090d557b6306383106580a29c2c6 (diff) | |
download | redot-engine-6f805dee2a0d9d23a8365de0331479c8846bf298.tar.gz |
Merge pull request #88365 from dalexeev/gds-fix-gdc-export
GDScript: Fix extension comparison for exported scripts
Diffstat (limited to 'modules/gdscript/gdscript.h')
-rw-r--r-- | modules/gdscript/gdscript.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript.h b/modules/gdscript/gdscript.h index 860b2350e2..981cbb3734 100644 --- a/modules/gdscript/gdscript.h +++ b/modules/gdscript/gdscript.h @@ -230,6 +230,8 @@ public: static String debug_get_script_name(const Ref<Script> &p_script); #endif + static bool is_equal_gdscript_paths(const String &p_path_a, const String &p_path_b); + _FORCE_INLINE_ StringName get_local_name() const { return local_name; } void clear(GDScript::ClearData *p_clear_data = nullptr); |