What it does
SpriteColor sets Color on a Sprite object. It takes iSpriteIndex (an integer), iRed (an integer), iGreen (an integer), iBlue (an integer) and iAlpha (an integer), and returns nothing. iSpriteIndex is the id of a Sprite object, the one CreateSprite returned: it is how the call knows what to act on.
Syntax
SpriteColor(iSpriteIndex integer, iRed integer, iGreen integer, iBlue integer, iAlpha integer)Parameters
| Name | Type |
|---|---|
| iSpriteIndex | integer |
| iRed | integer |
| iGreen | integer |
| iBlue | integer |
| iAlpha | integer |
Every form returns
nothing
Example · generated
image = LoadImage("assets/sprite.png", 1)sprite = CreateSprite(image)SpriteColor(sprite, 255, 128, 128, 255)DO Sync()LOOPLoadImage and CreateSprite are there to give the call something to act on; SpriteColor 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.