Difference between revisions of "GetCastTime - Spell"
Jump to navigation
Jump to search
imported>PurpleLunchbox m (moved GetCastTime - Spell to GetCastTime: Shared with Scroll Script) |
imported>PurpleLunchbox |
||
Line 2: | Line 2: | ||
[[Category:Papyrus]] | [[Category:Papyrus]] | ||
[[Category:SKSE]] | [[Category:SKSE]] | ||
'''SKSE Member of:''' [[Spell Script]] | '''SKSE Member of:''' [[Spell Script]] and [[Scroll Script]] | ||
Returns the time in seconds this spell takes to cast. (This function requires SKSE) | Returns the time in seconds this spell or scroll takes to cast. (This function requires SKSE) | ||
== Syntax == | == Syntax == | ||
Line 15: | Line 15: | ||
== Return Value == | == Return Value == | ||
Returns the time in seconds this spell takes to cast. | Returns the time in seconds this spell or scroll takes to cast. | ||
== Examples == | == Examples == | ||
Line 27: | Line 27: | ||
== See Also == | == See Also == | ||
*[[Spell Script]] | *[[Spell Script]] | ||
*[[Scroll Script]] |
Revision as of 15:24, 10 May 2012
SKSE Member of: Spell Script and Scroll Script
Returns the time in seconds this spell or scroll takes to cast. (This function requires SKSE)
Syntax
float Function GetCastTime() native
Parameters
None
Return Value
Returns the time in seconds this spell or scroll takes to cast.
Examples
Spell Property LightningStorm Auto
float castTime = LightningStorm.GetCastTime()
Debug.Trace("Lightning storm takes " + castTime + " seconds to cast.")