AddTweenChainChar

Family: Tweening · One form

What it does

AddTweenChainChar writes to a Tweening object: it adds rather than reads. It takes chainID (an integer), tweenID (an integer), textID (an integer), charID (an integer) and delay (a float), and returns nothing. chainID is the id of a Chain object, obtained elsewhere in the Tweening family.

Syntax

AddTweenChainChar(chainID integer, tweenID integer, textID integer, charID integer, delay float)

Parameters

NameType
chainIDinteger
tweenIDinteger
textIDinteger
charIDinteger
delayfloat

Every form returns

nothing

Example · generated

chain = CreateTweenChain()tween = CreateTweenChar(1.0)AddTweenChainChar(chain, tween, 1, 1, 1.0)DO  Sync()LOOP

CreateTweenChain and CreateTweenChar are there to give the call something to act on; AddTweenChainChar is the line that matters. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

149 commands in Tweening