You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MSPointer.capture allows you to optionally event.preventDefault the pointer events (was previously always on)
MSPointer.event now stores the most recent pointer event.
MSPointer.pointerDownCallback, pointerMoveCallback and pointerUpCallback all allow you to set your own event based callbacks.
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,9 @@ Version 2.3.0 - "Tarabon" - in dev
65
65
*`Physics.Arcade.isPaused` allows you to toggle Arcade Physics processing on and off. If `true` the `Body.preUpdate` method will be skipped, halting all motion for all bodies. Note that other methods such as `collide` will still work, so be careful not to call them on paused bodies.
66
66
*`Arcade.Body.friction` allows you to have more fine-grained control over the amount of velocity passed between bodies on collision.
67
67
* BitmapData.text will render the given string to the BitmapData, with optional font, color and shadow settings.
68
+
* MSPointer.capture allows you to optionally event.preventDefault the pointer events (was previously always on)
69
+
* MSPointer.event now stores the most recent pointer event.
70
+
* MSPointer.pointerDownCallback, pointerMoveCallback and pointerUpCallback all allow you to set your own event based callbacks.
0 commit comments