diff --git a/typescript/phaser.d.ts b/typescript/phaser.d.ts
index 5b589d181..d7d54e987 100644
--- a/typescript/phaser.d.ts
+++ b/typescript/phaser.d.ts
@@ -1,7 +1,7 @@
///
///
-// Type definitions for Phaser 3.0.0 - 7th September 2016
+// Type definitions for Phaser 3.0.0
// Project: https://github.com/photonstorm/phaser
declare module "phaser" {
@@ -18,6 +18,7 @@ declare class Phaser {
static CANVAS: number;
static WEBGL: number;
static HEADLESS: number;
+ static WEBGL_MULTI: number;
static BITMAPDATA: number;
static BITMAPTEXT: number;
@@ -1402,6 +1403,7 @@ declare module Phaser {
seed?: string;
state?: Phaser.State;
forceSetTimeOut: boolean;
+ multiTextue: boolean;
}
diff --git a/typescript/pixi.d.ts b/typescript/pixi.d.ts
index cad2b66d9..b185a94a1 100644
--- a/typescript/pixi.d.ts
+++ b/typescript/pixi.d.ts
@@ -1300,6 +1300,7 @@ declare module PIXI {
clearBeforeRender: boolean;
width: number;
height: number;
+ currentBatchedTextures: string[];
view: HTMLCanvasElement;
projection: Point;
offset: Point;
@@ -1318,6 +1319,7 @@ declare module PIXI {
updateTexture(texture: Texture): void;
destroy(): void;
mapBlendModes(): void;
+ setTexturePriority(textureNameCollection: string[]): string[];
}