Games/ETS2/Modding guides/1.26

From SCS Modding Wiki
< Games‎ | ETS2/Modding guides
Revision as of 07:56, 8 November 2016 by 50keda (talk | contribs) (Undo revision 2846 by Smarty (talk))

Jump to navigation Jump to search

Recommendations

  • When basing you 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. There is new attribute "map_projection" (default value "mercator"), where we can eventually define different projections than basic.

Attributes "latitude_a" and "latitude_b" have been removed. Instead "map_origin" and "map_factor" have been added. They are not mere float values but vectors of two float values (float2). Basic functionality is similar as with old latitude attributes:

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

In addition attributes "standard_paralel_1" and "standard_paralel_2" has been added for "labert_conic" projection currently used ATS for new USA map. All in degrees.

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).