« Return to Thread: Tweeners blur

Re: Tweeners blur

by dwayneneckles :: Rate this Message:

Reply to Author | View in Thread

Some parts of this message have been removed. Learn more about Nabble's security policy.
A few things my good friend..

a few things...


Thanks to the board... I learned this recently...

You can only blur the movie clip material.. not the actuall planes in order to access the movieclip... u do this as found here
http://www.rockonflash.com/blog/?p=101

  1. // cast as MovieAssetMaterial, then test for null
  2.     var mat:MovieAssetMaterial = plane.material as MovieAssetMaterial;
  3.     if( mat )
  4.     {
  5.         // cast as our sub class, then test for null
  6.         var mov:SpecialSauce = mat.movie as SpecialSauce;
  7.         if( mov )
  8.         {
  9.             // now you're talking to the instance directly
  10.             mov.animate();
  11.         }
  12.     }





> Date: Tue, 8 Apr 2008 13:28:38 -0700

> From: digcode@...
> To: papervision3D@...
> Subject: [Papervision3D] Tweeners blur
>
>
> Good Day
>
> I try to apply Tweeners blur to the DisplayObject3D objects thats added to
> main DisplayObject3D.
> compiller output is: ReferenceError: Error #1069: Property filters not found
> on org.papervision3d.objects.DisplayObject3D and there is no default value.
> At the same situation when i use Tweeners rotation or x,y,z properties all
> works correctly.
> Whats wrong?
> --
> View this message in context: http://www.nabble.com/Tweeners-blur-tp16572493p16572493.html
> Sent from the Papervision3D mailing list archive at Nabble.com.
>
>
> _______________________________________________
> Papervision3D mailing list
> Papervision3D@...
> http://osflash.org/mailman/listinfo/papervision3d_osflash.org


Pack up or back up–use SkyDrive to transfer files or keep extra copies. Learn how.
_______________________________________________
Papervision3D mailing list
Papervision3D@...
http://osflash.org/mailman/listinfo/papervision3d_osflash.org

 « Return to Thread: Tweeners blur