MotionBlur
Represents a PostEffect specifically designed for the MotionBlur.
| Type | Name | Interface Description |
|---|---|---|
| Variables | intensity: number | • Function: Gets or sets the motion blur intensity. Controls how strongly moving objects are blurred between frames. Range: [0, 1]. |
| Functions | constructor() |
Examples
constructor()
let obj = new APJS.MotionBlur();
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use MotionBlur here
}
onUpdate(deltaTime: number) {
}
}