28 lines
317 B
JavaScript
28 lines
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;
|