Civ4RouteModelInfos
From Civilization Modding Wiki
Jump to navigationJump to search
Previous article |
Back to XML Reference |
This page is missing information. Do not remove this notice until it is complete.
Summary
Declares the route art.
Single Line Tags
Text Tags
Tag Name | Description |
---|---|
ModelFile | path of .nif file for Road & RailRoad. |
ModelFileKey | unknown. is an alphanumeric value of A##, where A can be a letter from A-H, and ## can be a value from 01-20. The highest value is D20, for both Road & RR. |
RouteType | Either ROUTE_ROAD or ROUTE_RAILROAD. |
Connections | unsure. Would appear to define the actual connections to other roads or RR. |
ModelConnections | unsure. Would appear to define the graphical connections to other roads or RR. |
Rotations | unknown. Is always 0 90 180 270. |
Examples
<RouteModelInfo> <ModelFile>Art/Terrain/Routes/Roads/RoadA00.nif</ModelFile> <ModelFileKey>A00</ModelFileKey> <RouteType>ROUTE_ROAD</RouteType> <Connections>-</Connections> <ModelConnections>-</ModelConnections> <Rotations>0 90 180 270</Rotations> </RouteModelInfo>
<RouteModelInfo> <ModelFile>Art/Terrain/Routes/Railroads/RailroadD02.nif</ModelFile> <ModelFileKey>H01</ModelFileKey> <RouteType>ROUTE_RAILROAD</RouteType> <Connections>N NE E SE S SW W NW</Connections> <ModelConnections>NE SE SW NW</ModelConnections> <Rotations>0 90 180 270</Rotations> </RouteModelInfo>
Next article |
Back to XML Reference |