[Papervision3D] removing BitmapFilters from Plane

Giovanni Carnel info at g10.be
Tue Sep 2 07:58:03 PDT 2008


Hi,

I'm having troubles removing BitmapFilters from a Plane Object, using  
the code below it applies it fine (also when using Tweener), but it  
does not remove it (neither with Tweener)

code:
------------------------------------------
var custom_plane : Plane = new Plane( … );
			
custom_plane.useOwnContainer = true;  // w/o this line the  
bitmapFilter is not applied

var blur_filter : BlurFilter = new BlurFilter( … );
custom_plane.filters = [blur_filter];  // applies correctly
custom_plane.container.filters = [blur_filter];  // does NOT work?!

custom_plane.filters = []; // nothing happens, blur filter is still  
applied
custom_plane.container.filters = []; // neither on the container,  
which assumely the filter is applied

------------------------------------------

any suggestions are welcome!


g10


More information about the Papervision3D mailing list