mirror of
https://github.com/wassname/phaser.git
synced 2026-07-24 13:10:53 +08:00
Group.length now returns the number of children in the Group regardless of their exists/alive state, or 0 if the Group is has no children.
This commit is contained in:
@@ -374,9 +374,6 @@ PIXI.DisplayObject.prototype.addFilter = function(data)
|
||||
//this.filter = true;
|
||||
// data[0].target = this;
|
||||
|
||||
console.log('addFilter');
|
||||
console.log(data);
|
||||
|
||||
// insert a filter block..
|
||||
// TODO Onject pool thease bad boys..
|
||||
var start = new PIXI.FilterBlock();
|
||||
@@ -395,8 +392,6 @@ console.log(data);
|
||||
|
||||
start.target = this;
|
||||
|
||||
console.log('start', start);
|
||||
|
||||
/*
|
||||
* insert start
|
||||
*/
|
||||
@@ -484,13 +479,7 @@ PIXI.DisplayObject.prototype.removeFilter = function(data)
|
||||
// console.log("YUOIO")
|
||||
// modify the list..
|
||||
|
||||
console.log('DisplayObject removeFilter');
|
||||
console.log(data);
|
||||
|
||||
var startBlock = data.start;
|
||||
|
||||
console.log('start', startBlock);
|
||||
|
||||
var nextObject = startBlock._iNext;
|
||||
var previousObject = startBlock._iPrev;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user