OnObjectStopMoving: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Event|Server|1.3.0}} {{FuncDescription|Event called when an object stops moving after SetObjectMoveTo.}} {{FuncSyntax|OnObjectStopMoving(object)}} {{FuncParamete..." |
(No difference)
|
Latest revision as of 11:34, 7 October 2020
Description
Event called when an object stops moving after SetObjectMoveTo.
Syntax
OnObjectStopMoving(object)
Parameters
- object
The object which finished moving.
Example
function OnObjectStopMoving(object)
print("Object "..object.." stopped")
end
AddEvent("OnObjectStopMoving", OnObjectStopMoving)