Difference between revisions of "GetBaseObject - ActiveMagicEffect"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Jlundin
(Created page with 'Category:Scripting Category:Papyrus '''Member of:''' ActiveMagicEffect Script Obtains the MagicEffect this active magic effect is based on. =…')
 
imported>Tunaisafish
m (→‎Syntax: +native)
Line 7: Line 7:
== Syntax ==
== Syntax ==
<source lang="papyrus">
<source lang="papyrus">
MagicEffect Function GetBaseObject()
MagicEffect Function GetBaseObject() native
</source>
</source>



Revision as of 10:40, 28 March 2012

Member of: ActiveMagicEffect Script

Obtains the MagicEffect this active magic effect is based on.

Syntax

MagicEffect Function GetBaseObject() native

Parameters

None

Return Value

The MagicEffect this active effect is based on.

Examples

; Obtain the magic effect the active effect is based on
MagicEffect lightEffect = ActiveLightEffect.GetBaseObject()

See Also