diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-01 20:25:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 20:25:45 +0200 |
commit | f8720c85cae70390ed173fb1fe2ac169ea6074ef (patch) | |
tree | 3edcc310b9acd7303da40f98bee0072c4890d2c1 /doc | |
parent | 1f2cffb16164cf5ec0715d7cc90669028be60648 (diff) | |
parent | 386f86cddfff7265adb27f4524f027f57553a776 (diff) |
Merge pull request #41679 from Calinou/doc-projectsettings-name-user-data
Document how renaming the project affects the user data path
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/ProjectSettings.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index f1feade59d..8614042646 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -205,7 +205,8 @@ Icon set in [code].icns[/code] format used on macOS to set the game's icon. This is done automatically on start by calling [method DisplayServer.set_native_icon]. </member> <member name="application/config/name" type="String" setter="" getter="" default=""""> - The project's name. It is used both by the Project Manager and by exporters. The project name can be translated by translating its value in localization files. + The project's name. It is used both by the Project Manager and by exporters. The project name can be translated by translating its value in localization files. The window title will be set to match the project name automatically on startup. + [b]Note:[/b] Changing this value will also change the user data folder's path if [member application/config/use_custom_user_dir] is [code]false[/code]. After renaming the project, you will no longer be able to access existing data in [code]user://[/code] unless you rename the old folder to match the new project name. See [url=https://docs.godotengine.org/en/latest/tutorials/io/data_paths.html]Data paths[/url] in the documentation for more information. </member> <member name="application/config/project_settings_override" type="String" setter="" getter="" default=""""> Specifies a file to override project settings. For example: [code]user://custom_settings.cfg[/code]. |