Difference between revisions of "Documentation/Tools/SCS Workshop Uploader/versions.sii"
< Documentation | Tools | SCS Workshop Uploader
Jump to navigation
Jump to search
(Created page with " == versions.sii == 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. T...") |
|||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
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. | 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. | ||
Revision as of 13:46, 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:
SiiNunit
{
package_version_info : .latest {
folder: "latest"
}
package_version_info : .122.content {
folder: "content_122"
compatible_versions[]: "1.22.*"
}
package_version_info : .120and121.content {
// No special difference between 1.20 and 1.21
folder: "content_120_121"
compatible_versions[]: "1.20.*"
compatible_versions[]: "1.21.*"
}
}