Project organization

    Godot is scene-based in nature, and uses the filesystem as-is, without metadata or an asset database.

    Unlike other engines, many resources are contained within the scene itself, so the amount of files in the filesystem is considerably lower.

    Considering that, the most common approach is to group assets as close to scenes as possible; when a project grows, it makes it more maintainable.

    As an example, one can usually place into a single folder their basic assets, such as sprite images, 3D model meshes, materials, and music, etc. They can then use a separate folder to store built levels that use them.

    For consistency across projects, we recommend following these guidelines:

    • Use snake_case for folder and file names (with the exception of C# scripts). This sidesteps case sensitivity issues that can crop up after exporting a project on Windows. C# scripts are an exception to this rule, as the convention is to name them after the class name which should be in PascalCase.
    • Use PascalCase for node names, as this matches built-in node casing.

    Because of this, assets are now transparently imported from within the project folder.

    To prevent Godot from importing files contained in a specific folder, create an empty file called .gdignore in the folder (the leading is required). This can be useful to speed up the initial project importing.

    Note

    To create a file whose name starts with a dot on Windows, you can use a text editor such as Notepad++ or use the following command in a command prompt: type nul > .gdignore

    Once the folder is ignored, resources in that folder can’t be loaded anymore using the and preload() methods.

    Windows and recent macOS versions use case-insensitive filesystems by default, whereas Linux distributions use a case-sensitive filesystem by default. This can cause issues after exporting a project, since Godot’s PCK virtual filesystem is case-sensitive. To avoid this, it’s recommended to stick to naming for all files in the project (and lowercase characters in general).

    Note

    You can break this rule when style guides say otherwise (such as the C# style guide). Still, be consistent to avoid mistakes.

    On Windows 10, to further avoid mistakes related to case sensitivity, you can also make the project folder case-sensitive. After enabling the Windows Subsystem for Linux feature, run the following command in a PowerShell window:

    If you haven’t enabled the Windows Subsystem for Linux, you can enter the following line in a PowerShell window running as Administrator then reboot when asked: