Difference between revisions of "Documentation/Engine/Formats"
< Documentation | Engine
Jump to navigation
Jump to search
(→Formats used by SCS games) |
|||
Line 9: | Line 9: | ||
!width="200px"| Full name | !width="200px"| Full name | ||
!| Purpose | !| Purpose | ||
+ | !| Type | ||
|- | |- | ||
| [[Engine/Formats/pmd|.pmd]] | | [[Engine/Formats/pmd|.pmd]] | ||
| Prism model descriptor | | Prism model descriptor | ||
| Storage of the model descriptor data | | Storage of the model descriptor data | ||
+ | | Binary | ||
|- | |- | ||
| [[Engine/Formats/pmg|.pmg]] | | [[Engine/Formats/pmg|.pmg]] | ||
| Prism model geometry | | Prism model geometry | ||
| Storage of the model geometry data | | Storage of the model geometry data | ||
+ | | Binary | ||
|- | |- | ||
| [[Engine/Formats/pmc|.pmc]] | | [[Engine/Formats/pmc|.pmc]] | ||
| Prism model collision | | Prism model collision | ||
| Storage of the model dynamic collision data | | Storage of the model dynamic collision data | ||
+ | | Binary | ||
|- | |- | ||
| [[Engine/Formats/pma|.pma]] | | [[Engine/Formats/pma|.pma]] | ||
| Prism model animation | | Prism model animation | ||
| Storage of the model animation data | | Storage of the model animation data | ||
+ | | Binary | ||
|- | |- | ||
| [[Engine/Formats/ppd|.ppd]] | | [[Engine/Formats/ppd|.ppd]] | ||
| Prism prefab descriptor(def?) | | Prism prefab descriptor(def?) | ||
| Storage of the prefab data | | Storage of the prefab data | ||
+ | | Binary | ||
|- | |- | ||
| [[Engine/Formats/pit|.pit]] | | [[Engine/Formats/pit|.pit]] | ||
| Prism intermediate trait | | Prism intermediate trait | ||
| Storage of the model traits | | Storage of the model traits | ||
+ | | Text | ||
|- | |- | ||
| [[Engine/Formats/pim|.pim]] | | [[Engine/Formats/pim|.pim]] | ||
| Prism intermediate model | | Prism intermediate model | ||
| Storage of the model geometry data | | Storage of the model geometry data | ||
+ | | Text | ||
|- | |- | ||
| [[Engine/Formats/pic|.pic]] | | [[Engine/Formats/pic|.pic]] | ||
| Prism intermediate collision | | Prism intermediate collision | ||
| Storage of the model dynamic collision data | | Storage of the model dynamic collision data | ||
+ | | Text | ||
|- | |- | ||
| [[Engine/Formats/pia|.pia]] | | [[Engine/Formats/pia|.pia]] | ||
| Prism intermediate animation | | Prism intermediate animation | ||
| Storage of the model animation data | | Storage of the model animation data | ||
+ | | Text | ||
|- | |- | ||
| [[Engine/Formats/pip|.pip]] | | [[Engine/Formats/pip|.pip]] | ||
| Prism intermediate prefab | | Prism intermediate prefab | ||
| Storage of the prefab data | | Storage of the prefab data | ||
+ | | Text | ||
|- | |- | ||
| [[Engine/Formats/sii|.sii]] | | [[Engine/Formats/sii|.sii]] | ||
| Unit serialized file | | Unit serialized file | ||
| File storing serialized units | | File storing serialized units | ||
+ | | Text and Binary | ||
|- | |- | ||
| [[Engine/Formats/sui|.sui]] | | [[Engine/Formats/sui|.sui]] | ||
| Serialized unit include | | Serialized unit include | ||
| The SII-include file without magic mark SiiNUnit | | The SII-include file without magic mark SiiNUnit | ||
+ | | Text | ||
|- | |- | ||
| [[Engine/Formats/tobj|.tobj]] | | [[Engine/Formats/tobj|.tobj]] | ||
| Texture object | | Texture object | ||
| Texture detailed informations | | Texture detailed informations | ||
+ | | Text and Binary | ||
|- | |- | ||
| [[Engine/Formats/mat|.mat]] | | [[Engine/Formats/mat|.mat]] | ||
| Material | | Material | ||
| Material definition | | Material definition | ||
+ | | Text | ||
|- | |- | ||
| [[Engine/Formats/zip|.zip]] | | [[Engine/Formats/zip|.zip]] | ||
| ZIP archive | | ZIP archive | ||
| Storage for the mods | | Storage for the mods | ||
+ | | Binary | ||
|- | |- | ||
| [[Engine/Formats/scs|.scs]] | | [[Engine/Formats/scs|.scs]] | ||
| SCS archive | | SCS archive | ||
| Storage for the game data | | Storage for the game data | ||
+ | | Binary | ||
|} | |} |
Revision as of 13:15, 19 January 2016
Formats used by SCS games
List of the file formats you will work with while modding our games.
Click on the format to read full format description.
Format | Full name | Purpose | Type |
---|---|---|---|
.pmd | Prism model descriptor | Storage of the model descriptor data | Binary |
.pmg | Prism model geometry | Storage of the model geometry data | Binary |
.pmc | Prism model collision | Storage of the model dynamic collision data | Binary |
.pma | Prism model animation | Storage of the model animation data | Binary |
.ppd | Prism prefab descriptor(def?) | Storage of the prefab data | Binary |
.pit | Prism intermediate trait | Storage of the model traits | Text |
.pim | Prism intermediate model | Storage of the model geometry data | Text |
.pic | Prism intermediate collision | Storage of the model dynamic collision data | Text |
.pia | Prism intermediate animation | Storage of the model animation data | Text |
.pip | Prism intermediate prefab | Storage of the prefab data | Text |
.sii | Unit serialized file | File storing serialized units | Text and Binary |
.sui | Serialized unit include | The SII-include file without magic mark SiiNUnit | Text |
.tobj | Texture object | Texture detailed informations | Text and Binary |
.mat | Material | Material definition | Text |
.zip | ZIP archive | Storage for the mods | Binary |
.scs | SCS archive | Storage for the game data | Binary |