We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to make a simple fade animation with BlurLayout. But I found BlurLayout#setAlpha(float) is useless.
BlurLayout#setAlpha(float)
Then I search out the reason why my alpha settings wasn't applied:
BlurLayout.java#L282
BlurLayout.java#L461
It might not a good idea that restore alpha value to the fixed value (1.0) after finishing eval blurred image.
Can we provide an attribute for the final alpha value, or save the current value before setting alpha value to zero?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to make a simple fade animation with BlurLayout. But I found
BlurLayout#setAlpha(float)
is useless.Then I search out the reason why my alpha settings wasn't applied:
BlurLayout.java#L282
BlurLayout.java#L461
It might not a good idea that restore alpha value to the fixed value (1.0) after finishing eval blurred image.
Possible solutions
Can we provide an attribute for the final alpha value, or save the current value before setting alpha value to zero?
The text was updated successfully, but these errors were encountered: