phaser/src/input/events/GAMEOBJECT_DRAG_ENTER_EVENT.js

25 lines
1 KiB
JavaScript
Raw Normal View History

2019-01-16 13:12:07 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2020-01-15 12:07:09 +00:00
* @copyright 2020 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2019-01-16 13:12:07 +00:00
*/
/**
* The Game Object Drag Enter Event.
*
* This event is dispatched by an interactive Game Object if a pointer drags it into a drag target.
*
* Listen to this event from a Game Object using: `gameObject.on('dragenter', listener)`.
* Note that the scope of the listener is automatically set to be the Game Object instance itself.
*
* To receive this event, the Game Object must have been set as interactive and enabled for drag.
* See [GameObject.setInteractive]{@link Phaser.GameObjects.GameObject#setInteractive} for more details.
2019-01-16 13:12:07 +00:00
*
* @event Phaser.Input.Events#GAMEOBJECT_DRAG_ENTER
* @since 3.0.0
2019-01-16 13:12:07 +00:00
*
* @param {Phaser.Input.Pointer} pointer - The Pointer responsible for triggering this event.
* @param {Phaser.GameObjects.GameObject} target - The drag target that this pointer has moved into.
*/
module.exports = 'dragenter';