You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Violet edited this page Oct 26, 2020
·
2 revisions
Callbacks in the Telltale Tool
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.
Basic usage
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)