Allow `.res` and `.tres` extensions in the scene CLI positional argument

This closes #35709.

(cherry picked from commit 653334cc8d)
This commit is contained in:
Hugo Locurcio 2020-05-06 19:59:29 +02:00 committed by Rémi Verschelde
parent 2197ef0566
commit a785641196
1 changed files with 5 additions and 1 deletions

View File

@ -1455,7 +1455,11 @@ bool Main::start() {
} else if (args[i].length() && args[i][0] != '-' && positional_arg == "") { } else if (args[i].length() && args[i][0] != '-' && positional_arg == "") {
positional_arg = args[i]; positional_arg = args[i];
if (args[i].ends_with(".scn") || args[i].ends_with(".tscn") || args[i].ends_with(".escn")) { if (args[i].ends_with(".scn") ||
args[i].ends_with(".tscn") ||
args[i].ends_with(".escn") ||
args[i].ends_with(".res") ||
args[i].ends_with(".tres")) {
// Only consider the positional argument to be a scene path if it ends with // Only consider the positional argument to be a scene path if it ends with
// a file extension associated with Godot scenes. This makes it possible // a file extension associated with Godot scenes. This makes it possible
// for projects to parse command-line arguments for custom CLI arguments // for projects to parse command-line arguments for custom CLI arguments