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
Before:
public enum ColorMode { None = 0, Set= 1, Add = 2, Sub = 3, }
After:
public enum ColorMode { Multiply = 0, Fill = 1, Add = 2, Subtract = 3, }
This change does not affect existing projects.
The text was updated successfully, but these errors were encountered:
relate #50 ColorMode.None means ColorMode.Multiply.
ColorMode.None
ColorMode.Multiply
Sorry, something went wrong.
Multiply
No branches or pull requests
Before:
After:
This change does not affect existing projects.
The text was updated successfully, but these errors were encountered: