Difference between revisions of "NiTexturingPropertyGetTextureTranslation"
Jump to navigation
Jump to search
imported>DragoonWraith (New page: This is a command from NifSE. '''Syntax''' (StringMap:translation) NiTexturingPropertyGetTranslation short:texSlot short:nifID ''short:blockID'' (StringMap:translati...) |
imported>DragoonWraith |
||
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
'''Syntax''' | '''Syntax''' | ||
(StringMap:translation) | (StringMap:translation) NiTexturingPropertyGetTextureTranslation short:texSlot short:nifID ''short:blockID'' | ||
(StringMap:translation) | (StringMap:translation) NiTexPropGetTexTransl short:texSlot short:nifID ''short:blockID'' | ||
Returns the translation applied to the texture used by the specified [[NifSE (NiTexturingProperty)|<tt>NiTexturingProperty</tt>]] in the given slot. The texture slots range from 0 to [[NiTexturingPropertyGetTextureCount]], and the possible choices are given below. See [[NiTexturingPropertyGetTextureCount]] for more details. | Returns the translation applied to the texture used by the specified [[:Category:NifSE (NiTexturingProperty)|<tt>NiTexturingProperty</tt>]] in the given slot. The texture slots range from 0 to [[NiTexturingPropertyGetTextureCount]], and the possible choices are given below. See [[NiTexturingPropertyGetTextureCount]] for more details. | ||
The returned StringMap has the following format: | The returned StringMap has the following format: | ||
Line 17: | Line 17: | ||
{{NifSE NiTexturingProperty Texture Slots}} | {{NifSE NiTexturingProperty Texture Slots}} | ||
[[Category:NifSE| | == See Also == | ||
[[Category:NifSE (NiTexturingProperty)| | |||
* [[NiTexturingPropertySetTextureTranslation]] | |||
[[Category:NifSE|TexturingPropertyGetTextureTranslation]] | |||
[[Category:NifSE (NiTexturingProperty)|GetTextureTranslation]] |
Latest revision as of 16:29, 21 January 2011
This is a command from NifSE.
Syntax
(StringMap:translation) NiTexturingPropertyGetTextureTranslation short:texSlot short:nifID short:blockID (StringMap:translation) NiTexPropGetTexTransl short:texSlot short:nifID short:blockID
Returns the translation applied to the texture used by the specified NiTexturingProperty in the given slot. The texture slots range from 0 to NiTexturingPropertyGetTextureCount, and the possible choices are given below. See NiTexturingPropertyGetTextureCount for more details.
The returned StringMap has the following format:
map["u"] = translation in the U coordinate direction map["v"] = translation in the V coordinate direction
Returns -1 if the function fails for whatever reason.
The default value of blockID, 0, indicates the NIF's root, a NiNode. NiNode blocks are not derived from NiTexturingProperty, so this function will always require an explicit blockID.
Texture Slots
- BASE_MAP = 0 - a.k.a. the color map
- DARK_MAP = 1
- DETAIL_MAP = 2
- GLOSS_MAP = 3
- GLOW_MAP = 4
- BUMP_MAP = 5
- NORMAL_MAP = 6
- UNKNOWN2_MAP = 7
- DECAL_0_MAP = 8
- DECAL_1_MAP = 9
- DECAL_2_MAP = 10
- DECAL_3_MAP = 11