Particles3DImage

Family: 3DParticles · One form

What it does

Particles3DImage sets Image on a 3DParticles object. It takes ID (an integer) and imageID (an integer), and returns nothing.

Syntax

Particles3DImage(ID integer, imageID integer)

Parameters

NameType
IDinteger
imageIDinteger

Every form returns

nothing

Example · generated

image = LoadImage("assets/sprite.png", 1)Particles3DImage(1, image)DO  Sync()LOOP

LoadImage is there to give the call something to act on; Particles3DImage 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.

41 commands in 3DParticles