()
| 2558 | } |
| 2559 | |
| 2560 | clearOutputLabels() { |
| 2561 | if (!this.outputLabels.length || !this.labelGroup) return; |
| 2562 | this.outputLabels.forEach((sprite) => { |
| 2563 | if (sprite.material.map) { |
| 2564 | sprite.material.map.dispose(); |
| 2565 | } |
| 2566 | sprite.material.dispose(); |
| 2567 | this.labelGroup.remove(sprite); |
| 2568 | }); |
| 2569 | this.outputLabels = []; |
| 2570 | } |
| 2571 | |
| 2572 | createOutputLabels(positions) { |
| 2573 | if (!this.labelGroup) return; |