Definition
function Update() end
Description
Suppose a script that has an Update() event is attached to an object. In this case, the Update() event is called every frame. For example if the frame rate is 30, this event will be called 30 times per second.
Example
function Update() PrintConsole("\nUpdate() Event was called") endUpdate Event