Cesium-Examples/libs/three/examples/jsm/renderers/common/Pipeline.js

14 lines
130 B
JavaScript
Raw Permalink Normal View History

2025-03-11 08:25:45 +00:00
class Pipeline {
constructor( cacheKey ) {
this.cacheKey = cacheKey;
this.usedTimes = 0;
}
}
export default Pipeline;