OnConsciousnessStateChanged - Actor
Jump to navigation
Jump to search
Member of: Actor Script
Event called when this actor changes consciousness state.
Syntax[edit | edit source]
Event OnConsciousnessStateChanged( bool abUnconscious )
Parameters[edit | edit source]
- abUnconscious: True if the actor is unconscious, false if it became conscious.
Examples[edit | edit source]
Event OnConsciousnessStateChanged( bool abUnconscious )
Debug.Trace( "OnConsciousnessStateChanged Received: " + abUnconscious )
EndEvent