Difference between revisions of "GetExplosionTraitForm"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Jazzisparis
(Created page with "{{Function |origin = JIP |summary = Returns the value of an explosion's form-type trait (determined by <i>traitID</i>). |name = GetExplosionTraitForm |returnType = traitFo...")
 
imported>Jazzisparis
 
(One intermediate revision by the same user not shown)
Line 23: Line 23:
}}
}}
==See Also==
==See Also==
*[[SetExplosionTraitForm]]
*[[GetExplosionTraitNumeric]]
*[[SetExplosionTraitNumeric]]
*[[GetExplosionFlag]]
*[[SetExplosionFlag]]
[[Category:Functions_(JIP)]]
[[Category:Functions_(JIP)]]
[[Category:Explosion Functions (JIP)]]

Latest revision as of 14:07, 30 March 2015

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

A function added by the JIP NVSE Plugin.

Description

Returns the value of an explosion's form-type trait (determined by traitID).

Syntax

[help]
(traitForm:ref) GetExplosionTraitForm explosion:ref traitID:int{0-4}

Explosion Form Trait IDs

0	Light
1	Sound #1
2	Sound #2
3	Impact Data Set
4	Placed Impact Object

Example

GetExplosionTraitForm 40mmGrenadeExplosion 2

Will return the Sound #2 of 40mmGrenadeExplosion.

See Also