Difference between revisions of "SetTextureSetTraitNumeric"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
(Created page with "{{Function |origin = JIP |summary = Sets the value of a Texture-Set's numeric trait (determined by <i>traitID</i>). |name = SetTextureSetTraitNumeric |returnType = traitVa...")
 
imported>Jazzisparis
 
(One intermediate revision by the same user not shown)
Line 30: Line 30:
}}
}}
==See Also==
==See Also==
*[[GetTextureSetTraitNumeric]]
*[[GetTextureSetTexture]]
*[[SetTextureSetTexture]]
*[[GetTextureSetFlag]]
*[[SetTextureSetFlag]]
[[Category:Functions_(JIP)]]
[[Category:Functions_(JIP)]]
[[Category:Texture-Set Functions (JIP)]]

Latest revision as of 15:34, 30 March 2015

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

A function added by the JIP NVSE Plugin.

Description

Sets the value of a Texture-Set's numeric trait (determined by traitID).

Syntax

[help]
(traitValue:float) SetTextureSetTraitNumeric textureSet:ref traitID:int{0-8} newValue:float

Texture-Set Numeric Trait IDs

0	Min. Width
1	Max. Width
2	Min. Height
3	Max. Height
4	Depth
5	Shininess
6	Parallax Scale
7	Parallax Passes
8	Color (RRRGGGBBB)

Example

SetTextureSetTraitNumeric LandscapeDirtNV 3 32

Will set the Max. Height of LandscapeDirtNV to 32.

See Also