google-code-export / papervision3d

Automatically exported from code.google.com/p/papervision3d
1 stars 1 forks source link

set filter of sprite will break the interaction of MovieMaterial #92

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. create a instance of Sprite with a filter
2. add mouse event listener to the instance
3. create a interactive instance of MovieMaterial and a instance of Plane

What is the expected output? What do you see instead?
The instance of Plane has interaction when trigger mouse event.
No interactive.

What version of the product are you using? On what operating system?
Revision 714: /trunk/as3/trunk/src
Public Beta 2.0 - Great White

WinXP SP2

Please provide any additional information below.

var spr:Sprite = new Sprite();
spr.graphics.beginFill(0xFF);
spr.graphics.drawRect(0, 0, 100, 100);
spr.graphics.endFill();

spr.addEventListener( MouseEvent.MOUSE_DOWN, handleClick );
// if turn on the spr.filters then must to addChild(spr)
//spr.filters = [new BlurFilter()];
//addChild(spr);

ma = new MovieMaterial(spr);
ma.interactive = true;

plane = new Plane(ma, 100, 100);
scene.addChild(plane);

Original issue reported on code.google.com by hbbalf...@gmail.com on 27 Aug 2008 at 5:59

GoogleCodeExporter commented 9 years ago
Andy, can you confirm  ?

Original comment by r.hauw...@gmail.com on 17 Oct 2008 at 1:53

GoogleCodeExporter commented 9 years ago

Original comment by neori...@gmail.com on 17 Nov 2008 at 3:13

GoogleCodeExporter commented 9 years ago
I've been able to recreate, and I've started looking into a fix.  

Original comment by neori...@gmail.com on 29 Dec 2008 at 4:47

GoogleCodeExporter commented 9 years ago

Original comment by neori...@gmail.com on 8 Mar 2009 at 6:37