Skip to content

Commit 0889cd7

Browse files
committed
Updated README for new mouse events
* Updated README to include information for: ** EntityMouseEnterHandler ** EntityMouseLeaveHandler
1 parent 7bbc374 commit 0889cd7

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,8 @@ EntityMouseDownHandler | onEntityMouseDown | :x: | :x:
183183
EntityMouseUpHandler | onEntityMouseUp | :x: | :x: | :heavy_check_mark: |
184184
EntityMouseClickHandler | onEntityMouseClick | :x: | :x: | :heavy_check_mark: |
185185
EntityMouseDragHandler | onEntityMouseDrag | :x: | :x: | :heavy_check_mark: |
186+
EntityMouseEnterHandler | onEntityMouseEnter | :x: | :x: | :heavy_check_mark: |
187+
EntityMouseLeaveHandler | onEntityMouseLeave | :x: | :x: | :heavy_check_mark: |
186188
CanvasResizeHandler | onCanvasResize | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
187189
WindowResizeHandler | onWindowResize | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
188190

@@ -202,6 +204,8 @@ func onEntityMouseDown(globalLocation:Point)
202204
func onEntityMouseUp(globalLocation:Point)
203205
func onEntityMouseClick(globalLocation:Point)
204206
func onEntityMouseDrag(globalLocation:Point, movement:Point)
207+
func onEntityMouseEnter(globalLocation:Point)
208+
func onEntityMouseLeave(globalLocation:Point)
205209

206210
// Re-sizing Events
207211
func onCanvasResize(size:Size)

0 commit comments

Comments
 (0)