IsEnabled - ObjectReference
Revision as of 16:19, 24 October 2011 by imported>Plplecuyer
Member of: ObjectReference Script
Checks to see if this object is currently enabled. (The opposite of IsDisabled)
Syntax
bool Function IsEnabled()
Parameters
None.
Return Value
If this object is currently enabled.
Examples
; Is the shield enabled?
if (ShieldProperty.IsEnabled())
Debug.Trace("The shield is up!")
endIf