Difference between revisions of "Documentation/Tools/SCS Workshop Uploader/versions.sii"
< Documentation | Tools | SCS Workshop Uploader
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
*Example file: | *Example file: | ||
− | <syntaxhighlight line="1"> | + | <syntaxhighlight lang="text" line="1"> |
SiiNunit | SiiNunit |
Revision as of 13:58, 19 January 2016
In the Steam Workshop mods you need to specify have versions.sii file containing definition which content folder should be used for which game version.
This file contains set of package_version_info serialized unit informations with proper set of the attributes.
- Example file:
1 SiiNunit
2 {
3 package_version_info : .latest {
4 folder: "latest"
5 }
6
7 package_version_info : .122.content {
8 folder: "content_122"
9 compatible_versions[]: "1.22.*"
10 }
11
12 package_version_info : .120and121.content {
13 // No special difference between 1.20 and 1.21
14 folder: "content_120_121"
15 compatible_versions[]: "1.20.*"
16 compatible_versions[]: "1.21.*"
17 }
18 }