Merge pull request #105910 from lawnjelly/global_get_fast4

Add `GLOBAL_GET` cached macros.
This commit is contained in:
Thaddeus Crews 2025-04-30 09:18:44 -05:00
commit f4f1471b57
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
48 changed files with 110 additions and 77 deletions

View file

@ -196,7 +196,7 @@ void GDScriptParser::push_warning(const Node *p_source, GDScriptWarning::Code p_
if (is_ignoring_warnings) {
return;
}
if (GLOBAL_GET("debug/gdscript/warnings/exclude_addons") && script_path.begins_with("res://addons/")) {
if (GLOBAL_GET_CACHED(bool, "debug/gdscript/warnings/exclude_addons") && script_path.begins_with("res://addons/")) {
return;
}
GDScriptWarning::WarnLevel warn_level = (GDScriptWarning::WarnLevel)(int)GLOBAL_GET(GDScriptWarning::get_settings_path_from_code(p_code));