* Adds a callback to be called when the pointer enters the Component. * * @param {PointerCallback} callback * @return {Interactions.Pointer} The calling Pointer Interaction.
(callback: PointerCallback)
| 72 | * @return {Interactions.Pointer} The calling Pointer Interaction. |
| 73 | */ |
| 74 | public onPointerEnter(callback: PointerCallback) { |
| 75 | this._pointerEnterCallbacks.add(callback); |
| 76 | return this; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Removes a callback that would be called when the pointer enters the Component. |
no test coverage detected