3.23 Release defs

This commit is contained in:
Richard Davey 2020-04-27 16:41:28 +01:00
parent e08c649db0
commit 08cdd09e1f

24
types/phaser.d.ts vendored
View file

@ -2,16 +2,6 @@
declare type CameraRotateCallback = (camera: Phaser.Cameras.Scene2D.Camera, progress: number, angle: number)=>void;
/**
* This event is fired when the Rotate effect begins to run on a camera.
*/
declare const CameraRotateStartEvent: any;
/**
* This event is fired when the Rotate effect completes.
*/
declare const CameraRotateCompleteEvent: any;
declare type DataEachCallback = (parent: any, key: string, value: any, ...args: any[])=>void;
declare type ContentLoadedCallback = ()=>void;
@ -3756,6 +3746,20 @@ declare namespace Phaser {
*/
const PRE_RENDER: any;
/**
* The Camera Rotate Complete Event.
*
* This event is dispatched by a Camera instance when the Rotate Effect completes.
*/
const ROTATE_COMPLETE: any;
/**
* The Camera Rotate Start Event.
*
* This event is dispatched by a Camera instance when the Rotate Effect starts.
*/
const ROTATE_START: any;
/**
* The Camera Shake Complete Event.
*