-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Led opacity #117
base: main
Are you sure you want to change the base?
Led opacity #117
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pretty based
public void incrementColors(int inc, Color color) { | ||
for (int i = 0; i < ledArray.length - inc; i++) { | ||
setLED(i, getLED(i + inc)); | ||
public void incrementColors(int inc, Color color, double opacity) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so i realized that this actually pushes the colors towards 0 which isn't explained in either the method name or the comments
@penguin212 pls merge if you're happy w everything + the review comments |
#114