-
-
Notifications
You must be signed in to change notification settings - Fork 167
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
Add AdjustmentFilter #124
Add AdjustmentFilter #124
Conversation
@@ -0,0 +1,21 @@ | |||
The MIT License | |||
|
|||
Copyright (c) 2013-2017 Mathew Groves, Chad Engler |
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.
Change copyright?
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.
After all of my filters be merged , I will create a new PR for change all of them.
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.
Okay 👍
super(vertex, fragment); | ||
|
||
Object.assign(this, { | ||
gamma: 1, |
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.
Need to documentation for each of the properties, not just the constructor options.
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.
I don't understand.... How to add documentation in Object.assign() ?
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.
I'm not sure if you need to add the name after @member
or not if it's not attached to this.gamma
. Test the documentation with npm run docs
to preview.
Object.assign(this, {
/**
* The amount of Gamma
* @member {number} gamma
* @default 1
*/
gamma: 1,
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.
can't run npm run docs
I don't know why...
# Conflicts: # tools/screenshots/config.json
Another awesome and useful filter. Thanks @finscn! |
This filter could help use to Adjust some basic properties of color :
gamma, contrast, saturation, brightness, alpha & RGB Channel.
Some effects also could be done with
ColorMatrixFilter
,But
AdjustmentFilter
is simple & easy to be understood .And It's more fast than
ColorMatrixFilter
. The core of the shader :There is no any complicated matrix computation .
Online example: http://fatidol.com/pixi-filters/