You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (p_path.begins_with("res://") && ResourceLoader::exists(p_path)) {
2616
-
WARN_PRINT(vformat("Loaded resource as image file, this will not work on export: '%s'. Instead, import the image file as an Image resource and load it normally as a resource.", p_path));
2616
+
if (path.begins_with("res://") && ResourceLoader::exists(path)) {
2617
+
WARN_PRINT(vformat("Loaded resource as image file, this will not work on export: '%s'. Instead, import the image file as an Image resource and load it normally as a resource.", path));
if (p_path.begins_with("res://") && ResourceLoader::exists(p_path)) {
2625
-
WARN_PRINT(vformat("Loaded resource as image file, this will not work on export: '%s'. Instead, import the image file as an Image resource and load it normally as a resource.", p_path));
2626
+
if (path.begins_with("res://") && ResourceLoader::exists(path)) {
2627
+
WARN_PRINT(vformat("Loaded resource as image file, this will not work on export: '%s'. Instead, import the image file as an Image resource and load it normally as a resource.", path));
0 commit comments