Skip to content

Api > LuaBehaviour > LateUpdate()


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.