Factorio Prototype DocsVersion 1.1.107

FileName :: stringExample code

A slash "/" is always used as the directory delimiter. A path always begins with the specification of a root, which can be one of three formats:

  • core: A path starting with __core__ will access the resources in the data/core directory, these resources are always accessible regardless of mod specifications.

  • base: A path starting with __base__ will access the resources in the base mod in data/base directory. These resources are usually available, as long as the base mod isn't removed/deactivated.

  • mod path: The format __<mod-name>__ is placeholder for root of any other mod (mods/), and is accessible as long as the mod is active.

Examples

filename = "__base__/graphics/entity/accumulator/accumulator.png"
filename = "__a-mod__/animations/assembler.png"

Prototypes

Types