Chuck.js Now all new with WEB_GL ! haha stupid config typo! arrgh

This commit is contained in:
logsol 2014-01-17 02:13:59 +01:00
parent 73d24ed14c
commit 0072f0e6b5
4 changed files with 26 additions and 13 deletions

View file

@ -1,3 +1,3 @@
define(["Lib/Vendor/Pixi/pixi.dev"], function() {
define(["Lib/Vendor/Pixi/pixi.dev"], function(PIXI) {
return PIXI;
})

View file

@ -2047,10 +2047,10 @@ PIXI.MovieClip.prototype.constructor = PIXI.MovieClip;
* @readOnly
*/
Object.defineProperty( PIXI.MovieClip.prototype, 'totalFrames', {
get: function() {
get: function() {
return this.textures.length;
}
return this.textures.length;
}
});
@ -3685,11 +3685,11 @@ PIXI.EventTarget = function () {
};
this.removeAllEventListeners = function( type ) {
var a = listeners[type];
if (a)
a.length = 0;
};
this.removeAllEventListeners = function( type ) {
var a = listeners[type];
if (a)
a.length = 0;
};
};
/**