Background for Fallout 4
Member of the Actor script
eventOnGetUp(ObjectReferenceakFurniture)

Description

Wiki Description

Event called when this actor gets up from a piece of furniture.

Documentation Comment

Event that is triggered when this actor leaves the furniture


Parameters

ObjectReferenceakFurniture

CK Wiki Description

The furniture the actor just got up off of.


Examples

Event OnGetUp(ObjectReference akFurniture)
  Debug.Trace("We just got up from " + akFurniture)
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnGetUp(ObjectReference akFurniture)
    Debug.trace("Event received - OnGetUp: akFurniture = " + akFurniture)
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.