Civ4RiverModelInfos: Difference between revisions

From Civilization Modding Wiki
Jump to navigationJump to search
(1st entry of data, copied from "civ4.wikidot.com".)
(No difference)

Revision as of 22:22, 10 May 2009

Previous article
Back to XML Reference



This page is missing information. Do not remove this notice until it is complete.

Summary

Declares all the river art files.


Single Line Tags

Tag Name Description
ModelFile path of individual river section .nif file.
BorderFile path of border .dds file for river section.
DeltaType Type of delta mouth. Can be either: DELTA_NONE, DELTA_CLOCKWISE, DELTA_COUNTER_CLOCKWISE, or DELTA_STRAIGHT.
Connections Gives available connections for each river section. Is either S, N, E, or W, or combination.
Rotations unknown. Is always 0 90 180 270


Integer Tags

Tag Name Description
TextureIndex Number of individual river section. Increase incrementally from 1 through 31 for each of the 31 sections.


Examples

<RiverModelInfo>
   <ModelFile>Art/Terrain/Routes/Rivers/River00a.nif</ModelFile>
   <BorderFile>Art/Terrain/Routes/Rivers/Border00a.dds</BorderFile>
   <TextureIndex>0</TextureIndex>
   <DeltaType>DELTA_NONE</DeltaType>
   <Connections>S</Connections>
   <Rotations>0 90 180 270</Rotations>
</RiverModelInfo>
<RiverModelInfo>
   <ModelFile>Art/Terrain/Routes/Rivers/River05d.nif</ModelFile>
   <BorderFile>Art/Terrain/Routes/Rivers/Border05d.dds</BorderFile>
   <TextureIndex>31</TextureIndex>
   <DeltaType>DELTA_CLOCKWISE</DeltaType>
   <Connections>N E</Connections>
   <Rotations>0 90 180 270</Rotations>
</RiverModelInfo>
Next article
Back to XML Reference