- Found in:
- Vanilla
eventOnWorkshopObjectMoved(ObjectReferenceakReference)
Description
Wiki Description
Event received when an existing workshop item is moved in the world using this workshop. The event is sent to both the Workshop reference and the reference being moved.
Documentation Comment
Event received when an existing workshop item is moved in the world
Parameters
ObjectReferenceakReference
Examples
Event OnWorkshopObjectMoved(ObjectReference akReference)
Debug.Trace(akReference + " just moved within the workshop!")
EndEventAuto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnWorkshopObjectMoved(ObjectReference akReference)
Debug.trace("Event received - OnWorkshopObjectMoved: akReference = " + akReference)
endEvent