GENERATE/PREV.gifGENERATE/NEXT.gif

Noise Controllers

noise_float : floatController
noise_position : positionController
noise_point3 : point3Controller
noise_rotation : rotationController
noise_scale : scaleController

properties

Access to the following properties is available on all noise controllers:

.seed : integer

.frequency : float

.fractal : boolean

.roughness : float

.rampin : time

.rampout : time

In addition, for noise float controllers you can get these properties:

.strength : float

.positive : boolean (limits values to > 0)

and for position, point3, rotation and scale controllers:

.x_strength : float

.y_strength : float

.z_strength : float

.x_positive : boolean

.y_positive : boolean

.z_positive : boolean

You need to access these properties explicitly on a controller, for example:

$box01.position.controller.x_strength = 100

or,

c = $box01.rotation.controller

c.seed = random 0 100

c.fractal = off

c.frequency = random 0.1 0.2