Civ4WaterPlaneInfos
The Civ4WaterPlaneInfos file relates to the display of water in the game.
All tags must be opened and closed; the first is the "open", the second the "close" tag. If nothing goes inside a "list tag", then it should just be the opening tag with a "/" before the closing bracket. The following tables contain all available tags, as well as their purpose and accepted values.
This page is missing information. Do not remove this notice until it is complete.
Tags
Headers
These tags typically bracket other tags, sometimes the entire file, and are generally used to specify more than one piece of data.
Tag Name | Description |
---|---|
WaterPlaneInfo | Main bracket for each entry |
Lists (Multi-line)
All List tags consist of an opening/closing tag, which is shown here, and then each entry within it is another tag with the same name as the parent tag, minus the "s" (i.e. singular, rather than plural).
Tag Name | Description |
---|---|
WaterMaterial | Unknown
<WaterMaterial> <MaterialColors> <DiffuseMaterialColor> <r>1.00</r> <g>1.00</g> <b>1.00 </DiffuseMaterialColor> <SpecularMaterialColor> <r>1.00</r> <g>1.00</g> <b>1.00 </SpecularMaterialColor> <EmmisiveMaterialColor> <r>1.00</r> <g>1.00</g> <b>1.00 </EmmisiveMaterialColor> </MaterialColors> <MaterialAlpha>0.5</MaterialAlpha> </WaterMaterial> |
WaterTextures | Unknown
<WaterTextures> <WaterBaseTexture> <TextureFile>Art/Terrain/Water/Water.dds</TextureFile> <TextureScaling>0.0020822511</TextureScaling> <URate>0.000150003</URate> <VRate>0.000029169</VRate> </WaterBaseTexture> <WaterTransitionTexture> <TextureFile>Art/Terrain/Water/CoastLandBlends.dds</TextureFile> </WaterTransitionTexture> </WaterTextures> |
Example
In the following example of code, please note that there is a specific order of all of the tags. You must list the tags in this order for the game to properly interpret your file.
<WaterPlaneInfo> <WaterMaterial> <MaterialColors> <DiffuseMaterialColor> <r>1.00</r> <g>1.00</g> <b>1.00 </DiffuseMaterialColor> <SpecularMaterialColor> <r>1.00</r> <g>1.00</g> <b>1.00 </SpecularMaterialColor> <EmmisiveMaterialColor> <r>1.00</r> <g>1.00</g> <b>1.00 </EmmisiveMaterialColor> </MaterialColors> <MaterialAlpha>0.5</MaterialAlpha> </WaterMaterial> <WaterTextures> <WaterBaseTexture> <TextureFile>Art/Terrain/Water/Water.dds</TextureFile> <TextureScaling>0.0020822511</TextureScaling> <URate>0.000150003</URate> <VRate>0.000029169</VRate> </WaterBaseTexture> <WaterTransitionTexture> <TextureFile>Art/Terrain/Water/CoastLandBlends.dds</TextureFile> </WaterTransitionTexture> </WaterTextures> </WaterPlaneInfo>