PostEffect
Represents a base class for other post effects.
| Type | Name | Interface Description |
|---|---|---|
| Variables | enabled: any | • Function: Indicates whether the post effect is enabled. |
| Functions | constructor() |
Examples
constructor()
let obj = new APJS.PostEffect();
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use PostEffect here
}
onUpdate(deltaTime: number) {
}
}