three
Version:
JavaScript 3D library
51 lines (27 loc) • 839 B
JavaScript
import Node from './Node.js';
import { addMethodChaining, nodeObject } from '../tsl/TSLCore.js';
class CacheNode extends Node {
static get type() {
return 'CacheNode';
}
constructor( node, parent = true ) {
super();
this.node = node;
this.parent = parent;
this.isCacheNode = true;
}
getNodeType( builder ) {
return this.node.getNodeType( builder );
}
build( builder, ...params ) {
const previousCache = builder.getCache();
const cache = builder.getCacheFromNode( this, this.parent );
builder.setCache( cache );
const data = this.node.build( builder, ...params );
builder.setCache( previousCache );
return data;
}
}
export default CacheNode;
export const cache = ( node, ...params ) => nodeObject( new CacheNode( nodeObject( node ), ...params ) );
addMethodChaining( 'cache', cache );