@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
23 lines (22 loc) • 437 B
JavaScript
;
import { TypedContainer } from "./_Base";
export class PostProcessContainer extends TypedContainer {
// _content: any;
// constructor() {
// super();
// }
set_content(content) {
super.set_content(content);
}
render_pass() {
return this._content;
}
object(options = {}) {
return this.render_pass();
}
// infos() {
// if (this._content) {
// return [this._content];
// }
// }
}