Skip to content

Api > Script > LateUpdate()


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