Civ4ArtDefines Feature: Difference between revisions
From Civilization Modding Wiki
Jump to navigationJump to search
(Created page with '{| align="left" |Previous article |} {|align="right" |Back to XML Reference |}<br><br> =Summary= Declares all the art files...') |
(1st entry of data, copied from "civ4.wikidot.com".) |
||
Line 67: | Line 67: | ||
</FeatureArtInfo> | </FeatureArtInfo> | ||
{| align="left" | {| align="left" | ||
|[[Civ4ArtDefines_Improvement| | |[[Civ4ArtDefines_Improvement|Next article]] | ||
|} | |} | ||
{|align="right" | {|align="right" | ||
|[[Civ4 XML Reference|Back to XML Reference]] | |[[Civ4 XML Reference|Back to XML Reference]] | ||
|} | |} |
Revision as of 21:19, 10 May 2009
Previous article |
Back to XML Reference |
Summary
Declares all the art files, and art properties for terrain features.
Single Line Tags
Text Tags
Tag Name | Description |
---|---|
Type | Label that is used throughout all other XML files |
NIF | Location of .nif file |
KFM | Location of .kfm file |
Button | World Builder Icon. ,path to icon,path to corrosponing Atlas,#,# |
Boolean Tags
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 | unknown |
Floating Point Tags
Tag Name | Description |
---|---|
fScale | Scale on Map |
fInterfaceScale | multiply by fScale to get scale in Civilopedia |
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>
Next article |
Back to XML Reference |