Difference between revisions of "Documentation/Tools/SCS Workshop Uploader/versions.sii"

From SCS Modding Wiki
Jump to navigation Jump to search
m (50keda moved page Tools/Workshop Uploader/versions.sii to Tools/SCS Workshop Uploader/versions.sii without leaving a redirect)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
In the Steam Workshop mods you need to have unit file "versions.sii" containing definitions which content folder should be used for which game version.
 
In the Steam Workshop mods you need to have unit file "versions.sii" containing definitions which content folder should be used for which game version.
  
This file contains set of [[Units/package_version_info|package_version_info]] serialized unit informations with proper set of the attributes.
+
This file contains set of [[Documentation/Engine/Units/package_version_info|package_version_info]] serialized unit informations with proper set of the attributes.
  
 
*Example file:
 
*Example file:
Line 25: Line 25:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 
[[Category:Documentation]]
 
[[Category:SCS Workshop Uploader]]
 

Latest revision as of 09:14, 16 February 2016

In the Steam Workshop mods you need to have unit file "versions.sii" containing definitions 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 	package_name: "latest"
 5 }
 6 
 7 package_version_info : .122.content {
 8 	package_name: "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 	package_name: "content_120_121"
15 	compatible_versions[]: "1.20.*"
16 	compatible_versions[]: "1.21.*"
17 }
18 }