UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

28 lines (19 loc) 416 B
import { EnginePlugin } from "../../../../plugin/EnginePlugin.js"; export class SimplePostProcessEffectsManager extends EnginePlugin { constructor() { super(); } /** * @returns {FrameBuffer} */ getFinalColorOutput() { } /** * * @param {SimplePostProcessEffect} effect */ add(effect) { } remove(effect) { } }