* Adds a callback to be called when the pointer exits the Component. * * @param {PointerCallback} callback * @return {Interactions.Pointer} The calling Pointer Interaction.
(callback: PointerCallback)
| 116 | * @return {Interactions.Pointer} The calling Pointer Interaction. |
| 117 | */ |
| 118 | public onPointerExit(callback: PointerCallback) { |
| 119 | this._pointerExitCallbacks.add(callback); |
| 120 | return this; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Removes a callback that would be called when the pointer exits the Component. |