Flint Particle System Forum - Source of FireBlob.swf Sat, 25 Dec 2010 17:34:14 +0000 http://flintparticles.org/forum/ Lussumo Vanilla 1.1.10 & Feed Publisher Source of FireBlob.swf http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=802#Comment_802 http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=802#Comment_802 Fri, 05 Jun 2009 22:21:36 +0100 Not Sure
FWIW, I'm trying to replicate the LogoFire effect, but without having an external linkage dependency. ]]>
Source of FireBlob.swf http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=805#Comment_805 http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=805#Comment_805 Sat, 06 Jun 2009 13:49:59 +0100 TackleMcClean
You can only hope that Richard stops by and reads this and possibly sharing the file!
You could try and just draw a small reddish shape if you can't find the source.
I too, would prefer though to look at the actual fireblob, as I want to make fire myself! ]]>
Source of FireBlob.swf http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=808#Comment_808 http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=808#Comment_808 Mon, 08 Jun 2009 08:48:30 +0100 Richard
As for what it is - it's an ellipse with a radial gradient fill fading to nothing at the edges.

Richard ]]>
Source of FireBlob.swf http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=811#Comment_811 http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=811#Comment_811 Tue, 09 Jun 2009 16:14:47 +0100 TackleMcClean
There you go, "Not Sure" ]]>
Source of FireBlob.swf http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=813#Comment_813 http://flintparticles.org/forum/comments.php?DiscussionID=219&Focus=813#Comment_813 Tue, 09 Jun 2009 20:54:11 +0100 Not Sure
public class FireBlob extends Shape
{
public static const DefaultColors : Array = [ 0xFFC814, 0xFF351E ];
public static const DefaultAlphas : Array = [ 1, 0.1 ];
public static const DefaultRatios : Array = [ 0, 255 ];

public function FireBlob( a : Number, b : Number, colors : Array = null, alphas : Array = null, ratios : Array = null, bm:String = "normal")
{
var matrix:Matrix = new Matrix();
matrix.createGradientBox( a * 2, b * 2, 0, -a, -b );
graphics.beginGradientFill( GradientType.RADIAL,
colors ? colors : DefaultColors,
alphas ? alphas : DefaultAlphas,
ratios ? ratios : DefaultRatios,
matrix );
graphics.moveTo( a, 0 );
graphics.curveTo( 0, b, -a, b );
graphics.curveTo( -a/2, 0, -a, -b );
graphics.curveTo( 0, -b, a, 0 );
graphics.endFill();
blendMode = bm;
}
}
]]>