callbacks - Telltale-Modding-Group/Telltale-Script-Editor GitHub Wiki
The Telltale Tool makes use of callbacks across many of its scripts. Below is a list of all currently known callbacks in the latest version of the Telltale Tool (found in TWD:TTDS). They may not be present in all versions, and not all have been tested.
Below is an example of how to use a callback.
local OnCallbackFired = function()
--Code within this method runs when the callback is fired!
end
Callback_OnPostUpdate:Add(OnCallbackFired)
Called when a scene is opened.
Called when a scene finishes loading
Called when a scene ends.
Called after each engine update.
Unknown Usage
Unknown Usage
Unknown Usage
Unknown usage