What it does
VideoDimensions sets Dimensions on a Video object. It takes x (a float), y (a float), width (a float) and height (a float), and returns nothing.
Syntax
VideoDimensions(x float, y float, width float, height float)Parameters
| Name | Type |
|---|---|
| x | float |
| y | float |
| width | float |
| height | float |
Every form returns
nothing
Example · generated
VideoDimensions(100.0, 120.0, 64.0, 64.0)DO Sync()LOOPVideoDimensions 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.