* Gets called when the user stops dragging the entity * @returns {boolean} false if the object stopped being dragged
()
| 101 | * @returns {boolean} false if the object stopped being dragged |
| 102 | */ |
| 103 | dragEnd() { |
| 104 | if (this.dragging === true) { |
| 105 | this.dragging = false; |
| 106 | return false; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Destructor |