Cesium-Examples/three/examples/jsm/nodes/accessors/ReferenceNode.js

73 lines
1.2 KiB
JavaScript
Raw Normal View History

2025-03-11 08:25:45 +00:00
import Node, { addNodeClass } from '../core/Node.js';
import { NodeUpdateType } from '../core/constants.js';
import { uniform } from '../core/UniformNode.js';
import { texture } from './TextureNode.js';
import { nodeObject } from '../shadernode/ShaderNode.js';
class ReferenceNode extends Node {
constructor( property, uniformType, object = null ) {
super();
this.property = property;
this.uniformType = uniformType;
this.object = object;
this.node = null;
this.updateType = NodeUpdateType.OBJECT;
this.setNodeType( uniformType );
}
setNodeType( uniformType ) {
let node = null;
if ( uniformType === 'texture' ) {
node = texture( null );
} else {
node = uniform( uniformType );
}
this.node = node;
}
getNodeType( builder ) {
return this.node.getNodeType( builder );
}
update( frame ) {
const object = this.object !== null ? this.object : frame.object;
const property = this.property;
this.node.value = object[ property ];
}
construct( /*builder*/ ) {
return this.node;
}
}
export default ReferenceNode;
export const reference = ( name, type, object ) => nodeObject( new ReferenceNode( name, type, object ) );
addNodeClass( ReferenceNode );