Civ4ArtDefines Interface

From Civilization Modding Wiki
Revision as of 20:12, 17 May 2009 by Ginger Ale (talk | contribs)
Jump to navigationJump to search

The Civ4ArtDefines_Interface file defines textures and 3D objects for various elements of the interface.

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.


Tags

Text Tags

Tag Name Description
Type Name of the object
Path Location of the image file


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.

<InterfaceArtInfo>
   <Type>ARROW_HEAD</Type>
   <Path>art/interface/screens/TechTree/Head.dds</Path>
</InterfaceArtInfo>