Flint Particle System Forum - Tween filter? Tue, 13 Dec 2011 10:41:00 +0000 http://flintparticles.org/forum/ Lussumo Vanilla 1.1.10 & Feed Publisher Tween filter? http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1106#Comment_1106 http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1106#Comment_1106 Wed, 10 Feb 2010 02:51:08 +0000 con.cept.me
var colorMatrix:ColorMatrixFilter = new ColorMatrixFilter( [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0.99, 0 ] );
renderer.addFilter( colorMatrix);

How can i tween it?

renderer.filters always seem to stay empty.. but i can see it in: renderer.postFilters

If I use Gtween something like:

ColorAdjustPlugin.install();
new GTween(renderer, 3, {saturation:-100, contrast:70}, {repeatCount:0, reflect:true});

Does not work.. how I can access the object with the filter ? ]]>
Tween filter? http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1110#Comment_1110 http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1110#Comment_1110 Wed, 10 Feb 2010 08:19:54 +0000 Richard
colorMatrix.matrix = [ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0.98, 0 ];
I don't know if or how you would do this with GTween. ]]>
Tween filter? http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1112#Comment_1112 http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1112#Comment_1112 Thu, 11 Feb 2010 04:02:43 +0000 con.cept.me Tween filter? http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1115#Comment_1115 http://flintparticles.org/forum/comments.php?DiscussionID=320&Focus=1115#Comment_1115 Sat, 13 Feb 2010 13:21:06 +0000 Richard