Civ4RouteModelInfos

From Civilization Modding Wiki
Revision as of 22:30, 10 May 2009 by Draco (talk | contribs) (1st entry of data, copied from "civ4.wikidot.com".)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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