Script.LateUpdate()
LateUpdate is called after all Update functions have been called.
Usage
local script = LUA.script;
--- LateUpdate message from Script
function script.LateUpdate()
-- your code here
end
LateUpdate is called after all Update functions have been called.
local script = LUA.script;
--- LateUpdate message from Script
function script.LateUpdate()
-- your code here
end