Files
td_official/public/sdk/three/jsm/renderers/common/Pipeline.js

14 lines
130 B
JavaScript
Raw Normal View History

2025-07-29 11:22:30 +08:00
class Pipeline {
constructor( cacheKey ) {
this.cacheKey = cacheKey;
this.usedTimes = 0;
}
}
export default Pipeline;