导航菜单
首页 >  Importing Image Files  > Import process

Import process

Up to date

This page is up to date for Godot 4.3.If you still find outdated information, please open an issue.

Import process露Importing assets in Godot露

To import assets in Godot, place your assets (image files, scenes, audiofiles, fonts, etc) directly in the project folder. There are 2 ways to achieve this:

For any file type: Copy files manually with your operating system's file manager.

For file types that can be imported by Godot:Drag-and-drop files from the operating system's file manager to the editor's FileSystem dock.This only works with resource file types (i.e. file types that Godot can import).

Godot will automatically import these files internally and keep the importedresources hidden in a res://.godot/imported/ folder.

This means that when trying to access imported assets through code, youneed to use the Resource Loader as it willautomatically take into account where the internal files are saved. If youtry and access an imported asset using the FileAccess class,it will work in the editor, but it will break in the exported project.

However, the Resource Loader cannot accessnon-imported files. Only the FileAccess class can.

Changing import parameters露

Note

Import parameters are only present in non-native Godot resource types.This means Godot's own scene and resource file formats (.tscn, .scn,.tres, .res) don't have import options you can select in the Importdock.

To change the import parameters of an asset in Godot, select the relevantresource in the FileSystem dock:

After adjusting the parameters, click Reimport. Be careful: if you selectanother file in the FileSystem dock before clicking Reimport, changes willbe discarded. After clicking Reimport, the chosen parameters will only beused for this asset and on future reimports.

Changing the import parameters of several assets at the same time is alsopossible. Simply select all of them together in the resources dock and theexposed parameters will apply to all of them when reimporting.

Reimporting multiple assets露

While working on a project you may find that several assets need to havethe same parameters changed, such as enabling mipmaps, but you only wantthose specific parameters changed. To do this, select every asset you wantto reimport in the file system. In the import tab there will now be acheckbox to the left of every import parameter.

Select the checkbox of the parameters you want to change on your importedassets, then change the parameters normally. Finally, click the reimportbutton and every selected asset will be reimported with only thoseparameters changed.

Automatic reimport露

When the MD5 checksum of the source asset changes, Godot will perform anautomatic reimport of it, applying the preset configured for that specificasset.

Files generated露

Importing will add an extra .import file next to the source file,containing the import configuration.

Make sure to commit these files to your version control system, as thesefiles contain important metadata.

lsexample.pngexample.png.importproject.godot

Additionally, extra assets will be present in the hiddenres://.godot/imported/ folder:

ls .godot/importedexample.png-218a8f2b3041327d8a5756f3a245f83b.ctexexample.png-218a8f2b3041327d8a5756f3a245f83b.md5

If any of the files present in this folder is erased (or the whole folder), theasset or assets will be reimported automatically. As such, committing the.godot/ folder to the version control system is not recommended. Whilecommitting this folder can shorten reimporting time when checking out on anothercomputer, it requires considerably more space and bandwidth.

The default version control metadata that can be generated on project creationwill automatically ignore the .godot/ folder.

Changing import resource type露

Some source assets can be imported as different types of resources. For this,select the relevant type of resource desired then click Reimport:

Select Keep File (exported as is) as resource type to skip file import, fileswith this resource type will be preserved as is during project export.

Select Skip File (not exported) as resource type to skip file import and ignorefile during project export.

Changing default import parameters露

Different types of projects might require different defaults. Changing the importoptions to a predefined set of options can be achieved by using thePreset... Menu. Besides some resource types offering presets, the defaultsettings can be saved and cleared too:

The default import parameters for a given resource type can be changedproject-wide using the Import Defaults tab of the Project Settings dialog:

Further reading露

This workflow takes a little time to get used to, but it enforces a more correctway to deal with resources.

There are many types of assets available for import. Continue reading tounderstand how to work with all of them:

Importing images

Importing audio samples

Importing 3D scenes

Importing translations

User-contributed notes

Please read the User-contributed notes policy before submitting a comment.

相关推荐: