Games/ETS2/Modding guides/1.26

From SCS Modding Wiki
< Games‎ | ETS2/Modding guides
Revision as of 09:53, 9 November 2016 by 50keda (talk | contribs) (Climate Profile)

Jump to navigation Jump to search

Recommendations

  • When basing your model on the original ones, add to your mod also ALL original /automat/ files used by it. The names of the files are generated as SHA1 hash of theirs content so whenever we change the parameters of the material in any way, a different file will be used to store them and the original file might cease to exist if there is no other model utilizing the original parameters.
  • When modifying original models, always include ALL compoments of the model (pmg+pmd) instead of just those you changed. Otherwise you risk crash if we change the model.
  • As always when adding new objects to files which support multi-file approach (e.g. road_look.sii) it is HIGHLY RECOMMENDED to use suffix or prefix in the name to avoid conflicts with new objects we are adding in patches. Otherwise you might have to use the batch renaming functionality (see Batch renaming) to fix the conflicts when new patch appears.

How to convert map

  • Load map
  • Do rebuild (F8)
  • Save map

Changes

Company Data

Unit "company_data" has new attribute "sort_name". It is a string used for sorting non ASCII only company names.

Climate Profile

Unit "climate_profile" underwent some changes. Simple latitude setting was updated to fully defined projection system. There is new attribute "map_projection" (default value "mercator"), where we can define the projection between map and globe coordinates.

Attributes "latitude_a" and "latitude_b" have been changed to "map_origin" and "map_factor". They are not mere float values but vectors of two float values of globe coordinates (latitude, longitude pair). Basic functionality is similar to previous latitude attributes but uses longitude in addition as it is needed for some projections:

[latitude,longitude] = projection( map_origin + map_factor * [map_z,map_x] )

In addition attributes "standard_paralel_1" and "standard_paralel_2" has been added for "lambert_conic" projection currently used ATS in re-scaled USA map. All in degrees.

Note: If you want use old maps use mercator projection. Then longitude is not taken into consideration at all so you can use any value (with preferably non-zero factor).

Truck Data

Interior Data

Unit "accessory_interior_data" has new animations - "general_air_press_anim" and "trailer_air_press_anim" both with their respective "_min" and "_max" values. They are additional air pressure gauges currently used in ATS truck Peterbilt 389.

Unit "accessory_interior_data" has new attribute "air_brake_safeguard" (default false or 0). It makes parking brake knob pneumatic (like in US trucks) and it will be physically kicked out on low air. So driver must push it again to drive (this is instead of electronic switch used in EU trucks).