What it does
ResumeTweenSprite makes something happen at once: it resumes. It takes tweenID (an integer) and spriteID (an integer), and returns nothing. tweenID is the id of a Tween object, obtained elsewhere in the Tweening family.
Syntax
ResumeTweenSprite(tweenID integer, spriteID integer)Parameters
| Name | Type |
|---|---|
| tweenID | integer |
| spriteID | integer |
Every form returns
nothing
Example · generated
tween = CreateTweenSprite(1.0)image = LoadImage("assets/sprite.png", 1)sprite = CreateSprite(image)ResumeTweenSprite(tween, sprite)DO Sync()LOOPCreateTweenSprite, LoadImage and CreateSprite are there to give the call something to act on; ResumeTweenSprite 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.