b3dCreateForceField

Creates force field handle (shapeType: 0=sphere 1=cone, falloffType: 0=constant 1=linear 2=inverse_square). Takes shapeType (0=SPHERE radial force all directions, 1=CONE directional force in cone), x/y/z (position in world space where force field is centered), radius (size of force field effect area in units, initial uniform scale), strength (force magnitude in units/sec^2, positive=repel negative=attract), falloffType (0=CONSTANT force uniform within radius, 1=LINEAR force decreases linearly with distance, 2=INVERSE_SQUARE force decreases by inverse square law). Returns force field handle (positive integer for created field, used with other force field functions).

3D Graphics

Parameters & Returns

Parameters

shapeType Int
x Double
y Double
z Double
radius Double
strength Double
falloffType Int

Returns

Int

Quick Summary

Creates force field handle (shapeType: 0=sphere 1=cone, falloffType: 0=constant 1=linear 2=inverse_square). Takes shapeType (0=SPHERE radial force all directions, 1=CONE directional force in cone), x/y/z (position in world space where force field is centered), radius (size of force field effect area in units, initial uniform scale), strength (force magnitude in units/sec^2, positive=repel negative=attract), falloffType (0=CONSTANT force uniform within radius, 1=LINEAR force decreases linearly with distance, 2=INVERSE_SQUARE force decreases by inverse square law). Returns force field handle (positive integer for created field, used with other force field functions).

Technical Exegesis...

Creates force field handle (shapeType: 0=sphere 1=cone, falloffType: 0=constant 1=linear 2=inverse_square).

Example

Example.bam
; No example implemented yet