LateUpdate
7/14/25Less than 1 minute
LuaBehaviour.LateUpdate()
LateUpdate is called every frame.
Usage
local script = LUA.script;
--- LateUpdate message from LuaBehaviour
function script.LateUpdate()
-- your code here
end
Extra Detail
LateUpdate is called after all Update functions have been called.