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
With 1.9.2:
class Main { static function main() { switch (BlendMode.SUBTRACT) { case BlendMode.ADD, BlendMode.ALPHA, BlendMode.DARKEN, BlendMode.DIFFERENCE, BlendMode.ERASE, BlendMode.HARDLIGHT, BlendMode.INVERT, BlendMode.LAYER, BlendMode.LIGHTEN, BlendMode.MULTIPLY, BlendMode.NORMAL, BlendMode.OVERLAY, BlendMode.SCREEN, BlendMode.SUBTRACT, BlendMode.SHADER: } } }
With 1.10.0:
class Main { static function main() { switch (BlendMode.SUBTRACT) { case BlendMode.ADD, BlendMode.ALPHA, BlendMode.DARKEN, BlendMode.DIFFERENCE , BlendMode.ERASE, BlendMode.HARDLIGHT, BlendMode.INVERT, BlendMode.LAYER , BlendMode.LIGHTEN, BlendMode.MULTIPLY, BlendMode.NORMAL, BlendMode.OVERLAY , BlendMode.SCREEN, BlendMode.SUBTRACT, BlendMode.SHADER: } } }
The text was updated successfully, but these errors were encountered:
changed wrap location of casePattern to afterLast, fixes HaxeChecksty…
9a27501
…le#579
e2b6cb1
No branches or pull requests
With 1.9.2:
With 1.10.0:
The text was updated successfully, but these errors were encountered: