What it does
Create3DPhysicsWorld creates World on a 3DPhysics object. It takes no arguments, and returns nothing. That is the first of 2 forms.
Syntax
1
Create3DPhysicsWorld()2
Create3DPhysicsWorld(scaleFactor float)Parameters
| Name | Type | In forms |
|---|---|---|
| scaleFactor | float | 2 |
Every form returns
nothing
Example · generated
Form 1, the short one
Create3DPhysicsWorld()DO Sync()LOOPForm 2, with every argument
Create3DPhysicsWorld(1.0)DO Sync()LOOPCreate3DPhysicsWorld 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.