three
Version:
JavaScript 3D library
28 lines (14 loc) • 317 B
JavaScript
import LightingNode from './LightingNode.js';
class AONode extends LightingNode {
static get type() {
return 'AONode';
}
constructor( aoNode = null ) {
super();
this.aoNode = aoNode;
}
setup( builder ) {
builder.context.ambientOcclusion.mulAssign( this.aoNode );
}
}
export default AONode;