Documentation/Engine/Units/accessory paint job data

From SCS Modding Wiki
Jump to navigation Jump to search

The accessory_paint_job_data unit class is used to define paint jobs for trucks and trailers (as of ETS2 1.25/ATS 1.4).

Usage

Airbrush

In the airbrush mode, the RGB of paint_job_mask is blended with the base color, using the alpha channel as the blend factor. This mode is active when the attribute airbrush is true.

Colormask

In the colormask mode, each of paint_job_mask's color channels (RGB) acts as a mask for a color being blended over the base texture. They are applied in the order blue, green, and red. So the red channel has the highest “priority”, followed by green and then blue.

TIP: Texture compression can lead to some minor aliasing at sharp boundaries between the mask channels. To avoid colors ‘bleeding through’ at these boundaries, try blending some of the lower-priority channel ‘under’ the higher-priority channel along their shared boundary. For example, at a sharp boundary between the red (255, 0, 0) and green (0, 255, 0) channels, a thin line of the base color may be visible. This can be mitigated by extending the edge of the lower-priority mask ‘under’ the higher-priority mask. So in the case where there is a sharp line between the red mask and the green mask, the green mask should be extended slightly into the area of the red mask. The resultant color looking at the RGB image would be yellow (255, 255, 0).

Attributes

Many common attributes are inherited from accessory_data.

Name Type Default Value Modes Description
mask_r_color float3 (1, 0, 0) colormask Defines the default color applied to each channel of the color mask.
mask_g_color (0, 1, 0)
mask_b_color (0, 0, 1)
base_color float3 (1, 1, 1) all Defines the default color of the paint job.
mask_r_locked bool true colormask When false, the player may change each channel's color via the color picker.
mask_g_locked true
mask_b_locked true
base_color_locked bool true all When false, the player may change the base color via the color picker.
flip_color_locked bool true flipflake When false, the player may change the flip color via the color picker.
flake_color_locked bool true flipflake When false, the player may change the flake color via the color picker.
flip_color float3 (1, 0, 0) flipflake Defines the color of the flip effect.
flip_strength float 0.27 flipflake Defines the relative strength of the flip effect.
flake_color float3 (0, 1, 0) flipflake Defines the color of the flake effect.
flake_uvscale float 32.0 flipflake Defines how many times the flake_noise texture repeats within one UV tile. (Another way to think of this is that the UV coordinates are divided by this factor when addressing flake_noise.)
flake_density float 1.0 flipflake Defines how 'tight' the flake effect is to the specular highlight. Higher values result in a smaller area of the flake effect, while smaller values result in a broad area having it.
flake_shininess float 50.0 flipflake
flake_clearcoat_rolloff float 2.2 flipflake Adjusts the sharpness of the clearcoat specular highlight. Higher values yield sharper edges.
flake_noise string "/material/custom/flake_noise.tobj" flipflake Path to the flipflake texture. The RGB component multiplies the flake_color, and the A component masks the flake effect.
flipflake bool false When true, flipflake (metallic/pearlescent) behavior and attributes are enabled. Cannot be used with colormask.
airbrush bool false When true, airbrush behavior and attributes are enabled. Cannot be used with colormask.
alternate_uvset bool false all When true, the resulting material will have the altuv flavor. This triggers usage of the alternate UV layout, if configured.
stock bool false all Defaults to false. This was previously used to mark paintjobs available when purchasing a truck when true, and only available from the upgrade shop when false. Currently must be set to false to avoid undesirable behavior.
paint_job_mask string all Defines the path to the texture resource (.tobj) to be used for color masking (colormask) or for blending (airbrush). If empty, mask is ignored and final result is composed purely from color attributes.
base_texture_override string all Defines the path to a texture resource (.tobj) to override the base texture of the truckpaint material(s). If empty, the base texture will be used as defined in the truckpaint material(s). This is useful for overriding the alpha channel of the base texture if a different specularity is desired.