Civ4ArtDefines Feature: Difference between revisions
From Civilization Modding Wiki
Jump to navigationJump to search
Ginger Ale (talk | contribs) mNo edit summary |
Ginger Ale (talk | contribs) mNo edit summary |
||
Line 57: | Line 57: | ||
! Button | ! Button | ||
| World Builder Icon.<br> | | World Builder Icon.<br> | ||
,path to icon,path to | ,path to icon,path to corresponding Atlas,#,#<br> | ||
numbers are x,y location in the atlas.<br> | numbers are x,y location in the atlas.<br> | ||
|} | |} |
Revision as of 01:20, 16 May 2009
The Civ4ArtDefines_Feature file declares all the art files, their locations, and the art properties for terrain features.
This page is missing information. Do not remove this notice until it is complete.
Tags
Headers
Tag Name | Description |
---|---|
FeatureArtInfo | This is the main bracket that encases each entry. |
Type | Label that is used throughout all other XML files. |
Boolean
Tag Name | Description |
---|---|
bAnimated | Determines if the Feature is animated or not. |
bRiverArt | If 1, Feature art works with River Art for shaping (unsure). |
bTileArt | This tag's purpose is unknown. Please help by figuring it out? |
Art
Tag Name | Description |
---|---|
fScale | Scale on Map |
fInterfaceScale | multiply by fScale to get scale in Civilopedia. |
NIF | Location of .nif file. |
KFM | Location of .kfm file. |
Button | World Builder Icon. ,path to icon,path to corresponding Atlas,#,# |
Example
<FeatureArtInfo> <Type>ART_DEF_FEATURE_JUNGLE</Type> <bAnimated>0</bAnimated> <bRiverArt>0</bRiverArt> <bTileArt>1</bTileArt> <fScale>1.0</fScale> <fInterfaceScale>1.0</fInterfaceScale> <NIF/> <KFM/> <Button>,Art/Interface/Buttons/TerrainFeatures/Jungle.dds,Art/Interface/Buttons/BaseTerrain_TerrainFeatures_Atlas.dds,5,3</Button> </FeatureArtInfo>
Back to XML Reference |