What it does
Create3DPhysicsStaticPlane creates StaticPlane on a 3DPhysics object. It takes normlX (a float), normalY (a float), normalZ (a float) and offsetPosition (a float), and answers an integer.
Syntax
Create3DPhysicsStaticPlane(normlX float, normalY float, normalZ float, offsetPosition float) → integerParameters
| Name | Type |
|---|---|
| normlX | float |
| normalY | float |
| normalZ | float |
| offsetPosition | float |
Every form returns
integer
Example · generated
3DPhysicsStaticPlane = Create3DPhysicsStaticPlane(1.0, 1.0, 1.0, 1.0)DO Sync()LOOPCreate3DPhysicsStaticPlane is called and its answer is printed every frame. 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.