* toggle the debug panel visibility state
()
| 350 | * toggle the debug panel visibility state |
| 351 | */ |
| 352 | toggle() { |
| 353 | if (this.visible) { |
| 354 | this.hide(); |
| 355 | } else { |
| 356 | this.show(); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | /** @private */ |
| 361 | _drawQuadTree() { |
no test coverage detected