File: blend_modes.coffee
| Defined in: | lib/psd/layer |
Variables Summary
- module.exports =
-
{ parseBlendModes: function() { this.blendMode = new BlendMode(this.file); this.blendMode.parse(); this.opacity = this.blendMode.opacity; this.visible = this.blendMode.visible; return this.clipped = this.blendMode.clipped; }, hidden: function() { return !this.visible; }, /* TODO: check section divider */ blendingMode: function() { return this.blendMode.mode; } }