(on)
| 346 | |
| 347 | get clippingViewport() { return this._clippingViewport; } |
| 348 | _setClippingViewport(on) { |
| 349 | if (on === this._clippingViewport) { |
| 350 | return; |
| 351 | } |
| 352 | this._clippingViewport = on; |
| 353 | this.dispatchEvent(new CustomEvent("clippingviewport", |
| 354 | { detail: this._clippingViewport })); |
| 355 | } |
| 356 | |
| 357 | get touchButton() { return 0; } |
| 358 | set touchButton(button) { Log.Warn("Using old API!"); } |
no test coverage detected