Skip to content

Commit 918e00b

Browse files
committed
Added Phaser.Keyboard.COMMA and Phaser.Keyboard.PERIOD to the consts list.
1 parent 8cf300f commit 918e00b

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@ Version 2.4 - "Katar" - in dev
380380
* If the device is detected as a Windows Phone the renderer is automatically set to use Canvas, even if WebGL or AUTO was requested (thanks @ramarro123 #1706)
381381
* RandomDataGenerator.weightedPick has been tweaked slightly to allow for a more even distribution of weights. It still favors the earlier array elements, but will accurately include 'distance' elements as well (thanks @gingerbeardman #1751)
382382
* BitmapData.clear has 4 new optional parameters: x, y, width and height, that define the area to be cleared. If left undefined it works exactly the same as before and clears the entire canvas.
383+
* Added Phaser.Keyboard.COMMA and Phaser.Keyboard.PERIOD to the consts list.
383384

384385
### Bug Fixes
385386

typescript/phaser.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1919,7 +1919,9 @@ declare module Phaser {
19191919
static F15: number;
19201920
static COLON: number;
19211921
static EQUALS: number;
1922+
static COMMA: number;
19221923
static UNDERSCORE: number;
1924+
static PERIOD: number;
19231925
static QUESTION_MARK: number;
19241926
static TILDE: number;
19251927
static OPEN_BRACKET: number;

0 commit comments

Comments
 (0)