mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-07 00:37:30 +00:00
18 lines
229 B
JavaScript
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;
|