Skip to content

Commit

Permalink
little fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
simppafi committed Dec 20, 2011
1 parent 3342b17 commit 05b7187
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified evo_spicy_particle_engine/bin/evoSpicyParticleEngine.swc
Binary file not shown.
Expand Up @@ -28,7 +28,7 @@

/**
* @author simo
*/
*/
public class EvoSpicyParticleEngine
{
public var onEngineReady :Signal;
Expand Down Expand Up @@ -390,7 +390,7 @@
{
_aspect = stage.stageWidth/stage.stageHeight;
perspective(_fov, _aspect, _zNear, _zFar);
context3d.configureBackBuffer((int(stage.stageWidth)&~1), (int(stage.stageHeight)&~1), 0, true);
if(context3d) context3d.configureBackBuffer((int(stage.stageWidth)&~1), (int(stage.stageHeight)&~1), 0, true);
}


Expand Down
Expand Up @@ -27,7 +27,7 @@ package evospicyparticleengine.texture {
ball.graphics.drawCircle(128 * mul, 178 * mul, 78 * mul * .85);
ball.graphics.endFill();
bitmapData.draw(ball);
bitmapData.applyFilter(bitmapData, bitmapData.rect, bitmapData.rect.topLeft, new BlurFilter(24, 24, 3));
bitmapData.applyFilter(bitmapData, bitmapData.rect, bitmapData.rect.topLeft, new BlurFilter(48*mul, 48*mul, 3));
texture.uploadFromBitmapData(bitmapData);
return texture;
}
Expand Down

0 comments on commit 05b7187

Please sign in to comment.