eventOnConsciousnessStateChanged(boolabUnconscious)
Description
Wiki Description
Event called when this actor changes consciousness state.
Documentation Comment
Event that is triggered when this actor's consciousness state changes
Parameters
boolabUnconscious
CK Wiki Description
True if the actor is unconscious, false if it became conscious.
Examples
Event OnConsciousnessStateChanged( bool abUnconscious )
Debug.Trace( "OnConsciousnessStateChanged Received: " + abUnconscious )
EndEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnConsciousnessStateChanged(bool abUnconscious)
Debug.trace("Event received - OnConsciousnessStateChanged: abUnconscious = " + abUnconscious)
endEvent