Background for Fallout 4
Member of the Actor script
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 )
EndEvent

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnConsciousnessStateChanged(bool abUnconscious)
    Debug.trace("Event received - OnConsciousnessStateChanged: abUnconscious = " + abUnconscious)
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.