Turbulence.SetSeed

Sets the seed value of the internal noise modules that are used to displace the input values.

@param seed The seed value.

Internally, there are three module::Perlin noise modules that displace the input value; one for the @a x, one for the @a y, and one for the @a z coordinate. This noise module assigns the following seed values to the module::Perlin noise modules: - It assigns the seed value (@a seed + 0) to the @a x noise module. - It assigns the seed value (@a seed + 1) to the @a y noise module. - It assigns the seed value (@a seed + 2) to the @a z noise module.

class Turbulence
void
SetSeed
(
int seed
)

Meta