Drop - ObjectReference
Member of: ObjectReference Script
Drops this object from the container that it is in.
SyntaxEdit
Function Drop(bool abSilent = false) native
ParametersEdit
- abSilent: If true, will not display an on-screen "X dropped" message if the container is the player.
- Default: False
Return ValueEdit
None.
ExamplesEdit
; Drops us from the container we are in
Drop()
; Silently drops us from the container we are in
Drop(true)