Importing images

    This small tutorial will explain what these parameters are and how to best make use of them.

    The default action in Godot is to import images as textures. Textures are stored in video memory and can’t be accessed directly. This is what makes drawing them efficient.

    Import options are vast:

    This option makes Godot be aware of when a texture (which is imported for 2D as default) is used in 3D. If this happens, setting are changed so the texture flags are friendlier to 3D (mipmaps, filter and repeat become enabled and compression is changed to VRAM). Texture is also reimported automatically.

    Images are one of the largest assets in a game. To handle them efficiently, they need to be compressed. Godot offers several compression methods, depending on the use case.

    Compress Mode

    • VRAM Compression: This is the most common compression mode for 3D assets. File on disk is reduced and video memory usage is also reduced considerably. For 3D, it may present unwanted artifacts, though.
    • Lossless Compression: This is the most common compression for 2D assets. It shows assets without any kind of artifacting, and disk compression is decent. It will use considerably more amount of video memory than VRAM, though.
    • Lossy Compression: For games with lots of large 2D assets, lossy compression can be a great choice. It has some artifacting, but less than VRAM and the file size is almost a tenth of Lossless.
    • Uncompressed: Only useful for formats that can’t be compressed (like, raw float).

    In this table, each of the four options are described together with their advantages and disadvantages ( good = Best, =Worst ):

    HDR Mode

    Godot supports high dynamic range textures (as .HDR or .EXR). These are mostly useful as high dynamic range equirectangular panorama skies (the internet has plenty if you search for them), which replace Cubemaps in Godot 2.x. Modern PCs support the BC6H VRAM format, but there are still plenty that do not.

    Normal Map

    When using a texture as normal map, only the red and green channels are required. Given regular texture compression algorithms produce artifacts that don’t look that nice in normal maps, the RGTC compression format is the best fit for this data. Forcing this option to “Enabled” will make Godot import the image as RGTC compressed. By default, it’s set to “Detect”, which means that if the texture is ever used as a normal map, it will be changed to “Enabled” and reimported automatically.

    There are plenty of settings that can be toggled when importing an image as a texture, depending on the use case.

    This setting is most commonly used in 3D, and is therefore generally disabled in 2D. It sets UV coordinates going beyond the 0,0 - 1,1 range to “loop”.

    Repeating can optionally be set to mirrored mode.

    Filter

    When pixels become larger than the screen pixels, this option enables linear interpolation for them. The result is a smoother (less blocky) texture. This setting can be commonly used in 2D and 3D, but it’s usually disabled when making pixel perfect games.

    Mipmaps

    When pixels become smaller than the screen, mipmaps kick in. This helps reduce the grainy effect when shrinking the textures. Keep in mind that, in older hardware (GLES2, mainly mobile), there are some requirements to use mipmaps:

    • Texture width and height must be powers of 2

    Keep in mind the above when making phone games and applications, want to aim for full compatibility, and need mipmaps.

    When doing 3D, mipmap should be turned on, as this also improves performance (smaller versions of the texture are used for objects further away).

    Anisotropic

    Godot uses Linear colorspace when rendering 3D. Textures mapped to albedo or detail channels need to have this option turned on in order for colors to look correct. When set to “Detect” mode, the texture will be marked as SRGB when used in albedo channels.

    Some special processes can be applied to images when imported as textures.

    Fix Alpha Border

    This puts pixels of the same surrounding color in transition from transparency to non transparency. It helps mitigate the outline effect when exporting images from Photoshop and the like.

    ../../../_images/fixedborder.png

    It’s a good idea to leave it on by default, unless specific values are needed.

    Premultiplied Alpha

    An alternative to fix darkened borders is to use premultiplied alpha. By enabling this option, the texture will be converted to this format. Keep in mind that a material will need to be created that uses the PREMULT ALPHA blend mode on canvas items that need it.

    HDR as sRGB

    A few HDR files are broken and contain sRGB color data. It is advised not to use them, but, in the worst-case scenario, toggling this option on will make them look right.

    Reverses the image’s color. This is useful, for example, to convert a height map generated by external programs to depth map to use with .