Update3D

Family: Core · One form

What it does

Update3D writes a value: it updates rather than reads. It takes time (a float), and returns nothing.

Syntax

Update3D(time float)

Parameters

NameType
timefloat

Every form returns

nothing

Example · generated

Update3D(1.0)DO  Sync()LOOP

Update3D is called with values of the types its signature asks for. 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.

200 commands in Core