@@ -21,9 +21,9 @@ included. If a resource has sub-resources that are built-in, the resource is
21
21
saved in a single file together with all the bundled sub-resources. For
22
22
example, a font resource is often bundled together with the font textures.
23
23
24
- The Godot file system avoids using metadata files. Existing asset managers and VCSs
25
- are better than anything we can implement, so Godot tries its best to play along
26
- with SVN , Git, Mercurial, Perforce , etc.
24
+ The Godot file system avoids using metadata files. Existing asset managers and VCSs
25
+ are better than anything we can implement, so Godot tries its best to play along
26
+ with Subversion , Git, Mercurial, etc.
27
27
28
28
Example of file system contents:
29
29
@@ -38,12 +38,12 @@ Example of file system contents:
38
38
project.godot
39
39
-------------
40
40
41
- The ``project.godot `` file is the project description file, and it is always found
41
+ The ``project.godot `` file is the project description file, and it is always found
42
42
at the root of the project. In fact, its location defines where the root is. This
43
43
is the first file that Godot looks for when opening a project.
44
44
45
45
This file contains the project configuration in plain text, using the win.ini
46
- format. Even an empty ``project.godot `` can function as a basic definition of
46
+ format. Even an empty ``project.godot `` can function as a basic definition of
47
47
a blank project.
48
48
49
49
Path delimiter
@@ -73,10 +73,10 @@ read-only and writing will no longer be permitted.
73
73
User path
74
74
---------
75
75
76
- Writing to disk is still needed for tasks such as saving game state or
76
+ Writing to disk is still needed for tasks such as saving game state or
77
77
downloading content packs. To this end, the engine ensures that there is a
78
- special path ``user:// `` that is always writable. This path resolves
79
- differently depending on the OS the project is running on. Local path
78
+ special path ``user:// `` that is always writable. This path resolves
79
+ differently depending on the OS the project is running on. Local path
80
80
resolution is further explained in :ref: `doc_data_paths `.
81
81
82
82
Host file system
@@ -95,8 +95,8 @@ moving assets around (renaming them or moving them from one path to another insi
95
95
the project) will break existing references to these assets. These references will
96
96
have to be re-defined to point at the new asset location.
97
97
98
- To avoid this, do all your move, delete and rename operations from within Godot, on
99
- the FileSystem dock. Never move assets from outside Godot, or dependencies will have
98
+ To avoid this, do all your move, delete and rename operations from within Godot, on
99
+ the FileSystem dock. Never move assets from outside Godot, or dependencies will have
100
100
to be fixed manually (Godot detects this and helps you fix them anyway, but why
101
101
go the hard route?).
102
102
0 commit comments