We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See the fiddle: https://jsfiddle.net/yar3333/bqj7fute/
Code:
var stage = new createjs.Stage("canvas"); var obj = new createjs.Shape(); stage.addChild(obj); obj.graphics .beginFill("rgba(128, 128, 128, 0.6)") .rect(0, 0, 100, 100) .endFill(); var obj2 = obj.clone(); obj2.x = 150; stage.addChild(obj2); obj2.filters = [ new createjs.BlurFilter(2, 2) ]; obj2.cache(0, 0, 100, 100); stage.update();
If you change alpha=0.6 to alpha=0.4 then image become fully invisible.
alpha=0.6
alpha=0.4
The text was updated successfully, but these errors were encountered:
Update BlurFilter.js
cb32f77
Fix premultiply bug (CreateJS#615).
Solution: #617
Sorry, something went wrong.
Merge pull request #361 from yar3333/master
4a5b7a2
Fix a bug like the same in EaselJS BlurFilter (CreateJS/EaselJS#615).
We will review the pull request for the next version.
No branches or pull requests
See the fiddle: https://jsfiddle.net/yar3333/bqj7fute/
Code:
If you change
alpha=0.6
toalpha=0.4
then image become fully invisible.The text was updated successfully, but these errors were encountered: