Documentation/Engine/Units/cargo model match

From SCS Modding Wiki
< Documentation‎ | Engine‎ | Units
Revision as of 06:19, 2 April 2025 by TeamDeer (talk | contribs) (Update for new cargo system - Version 1.54 // TeamDeer)

Jump to navigation Jump to search

Starting with ETS2/ATS game version 1.54, cargoes will now use the new cargo system. The cargo_model_match unit class is used to define the location of the cargo model definition file as well as several new types of cargo related information as well as cargo (model) dimensions, if applicable. Units of this type are found in /def/vehicle/cargo/<cargo_name>/*.sii

Attributes

Name Type Default Value Necessity Description
data_path array<string> required Paths to definitions of compatible cargo accessories, one of which will be chosen pseudo-randomly during job generation. The expected unit type is accessory_cargo_data. Typically, this will point to a SII file located in the same cargo folder IE. /def/vehicle/cargo/<cargo_name>/*.sii
dimensions float3 required if using 'area' method Dimensions of the cargo model in meters using the format of L x H x W Ex. (2.30, 2.63, 3.22)
unit_volume_factor float opitional The factor at which a cargo's volume unit is impacted by the total weight of trailer's 'body'; typically used by container style cargo
loading_method token required The method the cargo will be loaded onto the trailer -> custom, dynamic, area, area_cont_20ft, area_cont_40ft, area_cont_45ft, area_cont_53ft, cont_2x20ft, none, area_cylinder, area_logger, auxiliary_only
lashing_method token required The method at how the cargo lashings (straps) will connect and strap cargo down -> direct, direct_diagonal, top_over, none
lashing_gear_type token required The 'hardware' and strap 'type' that is used to lash cargo down -> chain, strap

Example SII File

This is an example of the unit class being used found at /def/vehicle/cargo/bricks/model_area.sii

SiiNunit
{
cargo_model_match : .area
{
	data_path[]: "/def/vehicle/cargo/bricks/accessory_bricks.sii"

	dimensions: (1.19, 0.97, 0.80)

	loading_method: area
	lashing_method: top_over
	lashing_gear_type: strap
}
}
‎