Factorio Prototype DocsVersion 2.0.15

CollisionMaskConnector :: struct Example code

The base game provides common collision mask functions in a Lua file in the core lualib.

Properties

layers :: dictionary[CollisionLayerID → true]

Every key in the dictionary is the name of one layer the object collides with. [...]

Every key in the dictionary is the name of one layer the object collides with. [...]

not_colliding_with_itself optional :: bool

Any two entities that both have this option enabled on their prototype and have an identical collision mask layers list will not collide. [...]

Any two entities that both have this option enabled on their prototype and have an identical collision mask layers list will not collide. [...]

consider_tile_transitions optional :: bool

Uses the prototypes position rather than its collision box when doing collision checks with tile prototypes. [...]

Uses the prototypes position rather than its collision box when doing collision checks with tile prototypes. [...]

colliding_with_tiles_only optional :: bool

Any prototype with this collision option will only be checked for collision with other prototype's collision masks if they are a tile.

Any prototype with this collision option will only be checked for collision with other prototype's collision masks if they are a tile.

Properties

layers :: dictionary[CollisionLayerID → true]

Every key in the dictionary is the name of one layer the object collides with. The value is meaningless and always true. An empty table means that no layers are set.

not_colliding_with_itself :: bool optional

Default: false

Any two entities that both have this option enabled on their prototype and have an identical collision mask layers list will not collide. Other collision mask options are not included in the identical layer list check. This does mean that two different prototypes with the same collision mask layers and this option enabled will not collide.

consider_tile_transitions :: bool optional

Default: false

Uses the prototypes position rather than its collision box when doing collision checks with tile prototypes. Allows the prototype to overlap colliding tiles up until its center point. This is only respected for character movement and cars driven by players.

colliding_with_tiles_only :: bool optional

Default: false

Any prototype with this collision option will only be checked for collision with other prototype's collision masks if they are a tile.

Example

-- Most common collision mask of buildings:
collision_mask = {layers = {item = true, meltable = true, object = true, player = true, water_tile = true, is_object = true, is_lower_object = true}}

Prototypes

Types

Defines