Difference between revisions of "OnNiNodeUpdate - Form"
Jump to navigation
Jump to search
m (Cecell moved page OnNiNodeUpdate to OnNiNodeUpdate - Form: Whoops - adding owning script to name) |
|||
(7 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
'''Member of:''' [[ActiveMagicEffect Script]], [[Form Script]], [[ObjectReference Script]] | '''Member of:''' [[ActiveMagicEffect Script]], [[Form Script]], [[ObjectReference Script]] | ||
Event called when a | Event called when a NetImmerse node is updated. | ||
== Syntax == | == Syntax == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
Event OnNiNodeUpdate() | |||
</source> | </source> | ||
== Parameters == | == Parameters == | ||
None | None | ||
== Examples == | == Examples == | ||
Event OnNiNodeUpdate() | |||
Debug.Trace("An NiNode update event was received!") | |||
EndEvent | |||
== See Also == | == See Also == | ||
*[[ | *[[ActiveMagicEffect Script]] | ||
*[[ | *[[Alias Script]] | ||
*[[ | *[[Form Script]] | ||
*[[RegisterForNiNodeUpdate - Form]] | |||
*[[UnregisterForNiNodeUpdate - Form]] | |||
*[[ | |||
*[[ |
Latest revision as of 22:47, 1 December 2021
Member of: ActiveMagicEffect Script, Form Script, ObjectReference Script
Event called when a NetImmerse node is updated.
Syntax[edit | edit source]
Event OnNiNodeUpdate()
Parameters[edit | edit source]
None
Examples[edit | edit source]
Event OnNiNodeUpdate() Debug.Trace("An NiNode update event was received!") EndEvent