Cesium-Examples/three/examples/jsm/nodes/core/NodeVarying.js
2025-03-11 17:51:04 +08:00

18 lines
229 B
JavaScript

import NodeVar from './NodeVar.js';
class NodeVarying extends NodeVar {
constructor( name, type ) {
super( name, type );
this.needsInterpolation = false;
this.isNodeVarying = true;
}
}
export default NodeVarying;