Skip to content

Commit

Permalink
update builds
Browse files Browse the repository at this point in the history
  • Loading branch information
englercj committed Jan 6, 2015
1 parent ed266fb commit 306a94a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions bin/pixi.dev.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/**
* @license
* pixi.js - v2.2.1
* pixi.js - v2.2.2
* Copyright (c) 2012-2014, Mat Groves
* http://goodboydigital.com/
*
* Compiled: 2015-01-05
* Compiled: 2015-01-06
*
* pixi.js is licensed under the MIT License.
* http://www.opensource.org/licenses/mit-license.php
Expand All @@ -26,7 +26,7 @@
*
* @module PIXI
*/

/**
* Namespace-class for [pixi.js](http://www.pixijs.com/).
*
Expand All @@ -40,7 +40,7 @@ var PIXI = PIXI || {};
/**
* @property {Number} WEBGL_RENDERER
* @protected
* @static
* @static
*/
PIXI.WEBGL_RENDERER = 0;
/**
Expand All @@ -53,9 +53,9 @@ PIXI.CANVAS_RENDERER = 1;
/**
* Version of pixi that is loaded.
* @property {String} VERSION
* @static
* @static
*/
PIXI.VERSION = "v2.2.0";
PIXI.VERSION = "v2.2.2";

/**
* Various blend modes supported by pixi. IMPORTANT - The WebGL renderer only supports the NORMAL, ADD, MULTIPLY and SCREEN blend modes.
Expand Down Expand Up @@ -139,7 +139,7 @@ else
PIXI.Uint16Array = Array;
}

// interaction frequency
// interaction frequency
PIXI.INTERACTION_FREQUENCY = 30;
PIXI.AUTO_PREVENT_DEFAULT = true;

Expand Down Expand Up @@ -195,14 +195,14 @@ PIXI.dontSayHello = false;
PIXI.defaultRenderOptions = {
view:null,
transparent:false,
antialias:false,
antialias:false,
preserveDrawingBuffer:false,
resolution:1,
clearBeforeRender:true,
autoResize:false
}

PIXI.sayHello = function (type)
PIXI.sayHello = function (type)
{
if(PIXI.dontSayHello)return;

Expand Down
Loading

0 comments on commit 306a94a

Please sign in to comment.