* Passive handler for `wheel` events on EventSystem.domElement this.domElement. * @param nativeEvent - The native wheel event.
(nativeEvent: WheelEvent)
| 449 | * @param nativeEvent - The native wheel event. |
| 450 | */ |
| 451 | protected onWheel(nativeEvent: WheelEvent): void { |
| 452 | if (!this.features.wheel) return; |
| 453 | const wheelEvent = this.normalizeWheelEvent(nativeEvent); |
| 454 | |
| 455 | this.rootBoundary.rootTarget = this.renderer.lastObjectRendered; |
| 456 | this.rootBoundary.mapEvent(wheelEvent); |
| 457 | } |
| 458 | |
| 459 | /** |
| 460 | * Sets the {@link EventSystem#domElement domElement} and binds event listeners. |
nothing calls this directly
no test coverage detected