-
-
Notifications
You must be signed in to change notification settings - Fork 21.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mark some common project settings as basic #61974
Mark some common project settings as basic #61974
Conversation
@@ -4929,7 +4929,7 @@ bool EditorNode::is_run_playing() const { | |||
String EditorNode::get_run_playing_scene() const { | |||
String run_filename = editor_run.get_running_scene(); | |||
if (run_filename.is_empty() && is_run_playing()) { | |||
run_filename = GLOBAL_DEF("application/run/main_scene", ""); // Must be the main scene then. | |||
run_filename = GLOBAL_DEF_BASIC("application/run/main_scene", ""); // Must be the main scene then. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Settings shouldn't be defined twice. And I feel EditorNode is not the right place to define this, it's used and should be defined in Main IMO.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The list looks ok. No comments on the settings being defined twice. Probably should be split into a separate proposal.
Fair enough, there's quite a few in that situation. |
Thanks! |
This marks advanced settings that were agreed upon in #50620 as basic.