UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

13 lines (11 loc) 346 B
import {TypedContainer} from './_Base'; import {ContainableMap} from './utils/ContainableMap'; import {NodeContext} from '../poly/NodeContext'; export class RopContainer extends TypedContainer<NodeContext.ROP> { set_content(content: ContainableMap[NodeContext.ROP]) { super.set_content(content); } renderer() { return this._content; } }