You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-31 18:41:20 +00:00
Make all unsupported renderer message features consistently warnings
Previously, some messages indicating a lack of support were errors instead of warnings. Some messages were also not shown when running a release export template. - Use "renderer" terminology consistently instead of "rendering method".
This commit is contained in:
@@ -566,7 +566,7 @@ void ProjectDialog::ok_pressed() {
|
||||
project_features.push_back("Mobile");
|
||||
} else if (renderer_type == "gl_compatibility") {
|
||||
project_features.push_back("GL Compatibility");
|
||||
// Also change the default rendering method for the mobile override.
|
||||
// Also change the default renderer for the mobile override.
|
||||
initial_settings["rendering/renderer/rendering_method.mobile"] = "gl_compatibility";
|
||||
} else {
|
||||
WARN_PRINT("Unknown renderer type. Please report this as a bug on GitHub.");
|
||||
|
||||
Reference in New Issue
Block a user