mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
Merge pull request #2042 from cloakedninjas/dev
Fixing typos in transformCallbackContext
This commit is contained in:
commit
d6ae99544b
2 changed files with 4 additions and 4 deletions
4
typescript/phaser.comments.d.ts
vendored
4
typescript/phaser.comments.d.ts
vendored
|
@ -21979,7 +21979,7 @@ declare module Phaser {
|
|||
* This ability allows you to check any of the matrix values and perform actions such as clamping scale or limiting rotation, regardless of the parent transforms.
|
||||
*/
|
||||
transformCallback: Function;
|
||||
transformCallbackContent: any;
|
||||
transformCallbackContext: any;
|
||||
|
||||
/**
|
||||
* The minimum scale this Game Object will scale down to.
|
||||
|
@ -23761,7 +23761,7 @@ declare module Phaser {
|
|||
* This ability allows you to check any of the matrix values and perform actions such as clamping scale or limiting rotation, regardless of the parent transforms.
|
||||
*/
|
||||
transformCallback: Function;
|
||||
transformCallbackContent: any;
|
||||
transformCallbackContext: any;
|
||||
|
||||
/**
|
||||
* The world coordinates of this Game Object in pixels.
|
||||
|
|
4
typescript/phaser.d.ts
vendored
4
typescript/phaser.d.ts
vendored
|
@ -4001,7 +4001,7 @@ declare module Phaser {
|
|||
top: number;
|
||||
type: number;
|
||||
transformCallback: Function;
|
||||
transformCallbackContent: any;
|
||||
transformCallbackContext: any;
|
||||
scaleMin: Phaser.Point;
|
||||
scaleMax: Phaser.Point;
|
||||
updateAnimation: Function;
|
||||
|
@ -4282,7 +4282,7 @@ declare module Phaser {
|
|||
type: number;
|
||||
tintedTexture: HTMLCanvasElement;
|
||||
transformCallback: Function;
|
||||
transformCallbackContent: any;
|
||||
transformCallbackContext: any;
|
||||
world: Phaser.Point;
|
||||
x: number;
|
||||
y: number;
|
||||
|
|
Loading…
Reference in a new issue