|
@@ -1096,14 +1096,17 @@ ProjectSettings::ProjectSettings() {
|
|
|
|
|
|
GLOBAL_DEF("editor/main_run_args", "");
|
|
|
|
|
|
+ GLOBAL_DEF("editor/scene_naming", 0); // Sync enum values with EditorNode.
|
|
|
+ ProjectSettings::get_singleton()->set_custom_property_info("editor/scene_naming", PropertyInfo(Variant::INT, "editor/scene_naming", PROPERTY_HINT_ENUM, "Auto,PascalCase,snake_case"));
|
|
|
+
|
|
|
GLOBAL_DEF("editor/search_in_file_extensions", extensions);
|
|
|
custom_prop_info["editor/search_in_file_extensions"] = PropertyInfo(Variant::POOL_STRING_ARRAY, "editor/search_in_file_extensions");
|
|
|
|
|
|
GLOBAL_DEF("editor/script_templates_search_path", "res://script_templates");
|
|
|
custom_prop_info["editor/script_templates_search_path"] = PropertyInfo(Variant::STRING, "editor/script_templates_search_path", PROPERTY_HINT_DIR);
|
|
|
|
|
|
- GLOBAL_DEF("editor/version_control/autoload_on_startup", false);
|
|
|
- GLOBAL_DEF("editor/version_control/plugin_name", "");
|
|
|
+ GLOBAL_DEF("editor/version_control_autoload_on_startup", false);
|
|
|
+ GLOBAL_DEF("editor/version_control_plugin_name", "");
|
|
|
|
|
|
action = Dictionary();
|
|
|
action["deadzone"] = Variant(0.5f);
|