| Package | com.flashdynamix.motion.effects.core |
| Class | public class NoiseEffect |
| Implements | IEffect |
| Property | Defined by | ||
|---|---|---|---|
| channelOptions : uint
A number that can be a combination of any of the four color channel values :
| NoiseEffect | ||
| grayScale : Boolean = true
A Boolean value.
| NoiseEffect | ||
| high : int = 255
The highest value to generate for each channel (0 to 255)
| NoiseEffect | ||
| low : int = 0
The lowest value to generate for each channel (0 to 255)
| NoiseEffect | ||
| seed : int = 0
The seed to use when rendering the noise effect this can be any number between 0 to int.MAX_VALUE.
| NoiseEffect | ||
| seedOffset : int = 2.147483647E9
The amount of offset which can be used to randomize the noise effect on each render from the seed value.
| NoiseEffect | ||
| Method | Defined by | ||
|---|---|---|---|
| NoiseEffect | |||
|
render(bmd:BitmapData):void
Renders the static noise effect onto the BitmapData.
| NoiseEffect | ||
| channelOptions | property |
public var channelOptions:uintA number that can be a combination of any of the four color channel values :
| grayScale | property |
public var grayScale:Boolean = true
A Boolean value. If the value is true, a grayscale image is created by setting all of the color channels to the same value.
The alpha channel selection is not affected by setting this parameter to true.
| high | property |
public var high:int = 255The highest value to generate for each channel (0 to 255)
| low | property |
public var low:int = 0The lowest value to generate for each channel (0 to 255)
| seed | property |
public var seed:int = 0The seed to use when rendering the noise effect this can be any number between 0 to int.MAX_VALUE.
| seedOffset | property |
public var seedOffset:int = 2.147483647E9The amount of offset which can be used to randomize the noise effect on each render from the seed value.
| NoiseEffect | () | constructor |
public function NoiseEffect()
| render | () | method |
public function render(bmd:BitmapData):voidRenders the static noise effect onto the BitmapData.
Parametersbmd:BitmapData |