Difference between revisions of "GetTextureSetTexture"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
(Created page with "{{Function |origin = JIP |summary = Returns the texture path of the specified <i>mapID</i> of a Texture-Set. |name = GetTextureSetTexture |returnType = texturePath:string_...")
 
imported>Jazzisparis
Line 24: Line 24:
}}
}}
==See Also==
==See Also==
*[[SetTextureSetTexture]]
*[[GetTextureSetTraitNumeric]]
*[[SetTextureSetTraitNumeric]]
*[[GetTextureSetFlag]]
*[[SetTextureSetFlag]]
[[Category:Functions_(JIP)]]
[[Category:Functions_(JIP)]]

Revision as of 11:37, 28 March 2015

< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Returns the texture path of the specified mapID of a Texture-Set.

Syntax

[help]
(texturePath:string_var) GetTextureSetTexture textureSet:ref mapID:int{0-5}

Texture-Set Map IDs

0	Diffuse
1	Normal/Gloss
2	Environment Mask
3	Glow/Skin/Hair
4	Height
5	Environment

Example

GetTextureSetTexture 1stPersonSniperRifleTexture 2

Will return the Environment Mask texture path of 1stPersonSniperRifleTexture.

See Also