mirror of
https://github.com/photonstorm/phaser
synced 2025-01-01 15:58:48 +00:00
34 lines
769 B
JavaScript
34 lines
769 B
JavaScript
|
/* global Phaser:true */
|
||
|
/**
|
||
|
* @author Richard Davey <rich@photonstorm.com>
|
||
|
* @copyright 2014 Photon Storm Ltd.
|
||
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||
|
*/
|
||
|
|
||
|
// Pixi expects these globals to exist
|
||
|
|
||
|
if (PIXI.blendModes === undefined)
|
||
|
{
|
||
|
PIXI.blendModes = Phaser.blendModes;
|
||
|
}
|
||
|
|
||
|
if (PIXI.scaleModes === undefined)
|
||
|
{
|
||
|
PIXI.scaleModes = Phaser.scaleModes;
|
||
|
}
|
||
|
|
||
|
if (PIXI.Texture.emptyTexture === undefined)
|
||
|
{
|
||
|
PIXI.Texture.emptyTexture = new PIXI.Texture(new PIXI.BaseTexture());
|
||
|
}
|
||
|
|
||
|
if (PIXI.DisplayObject._tempMatrix === undefined)
|
||
|
{
|
||
|
PIXI.DisplayObject._tempMatrix = new PIXI.Matrix();
|
||
|
}
|
||
|
|
||
|
if (PIXI.RenderTexture.tempMatrix === undefined)
|
||
|
{
|
||
|
PIXI.RenderTexture.tempMatrix = new PIXI.Matrix();
|
||
|
}
|