moved globalCompositeOperation property to Konva.Node

This commit is contained in:
Anton Lavrenov 2017-04-21 12:07:36 -05:00
parent f47c1328ce
commit d3498fc0fa
5 changed files with 49 additions and 47 deletions

View File

@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Not released][Not released]
### Changed
- moved `globalCompositeOperation` property to `Konva.Node`
## [1.6.0][2017-04-21]

View File

@ -2653,6 +2653,7 @@
_drawCachedSceneCanvas: function(context) {
context.save();
context._applyOpacity(this);
context._applyGlobalCompositeOperation(this);
context.translate(this._cache.canvas.x, this._cache.canvas.y);
var cacheCanvas = this._getCachedSceneCanvas();
@ -4376,6 +4377,26 @@
* node.y(5);
*/
Konva.Factory.addGetterSetter(
Konva.Node,
'globalCompositeOperation',
'source-over'
);
/**
* get/set globalCompositeOperation of a shape
* @name globalCompositeOperation
* @method
* @memberof Konva.Node.prototype
* @param {Number} blur
* @returns {Number}
* @example
* // get shadow blur
* var globalCompositeOperation = shape.globalCompositeOperation();
*
* // set shadow blur
* shape.globalCompositeOperation('source-in');
*/
Konva.Factory.addGetterSetter(Konva.Node, 'opacity', 1);
/**
@ -8890,27 +8911,6 @@
Konva.Validators.alphaComponent
);
Konva.Factory.addGetterSetter(
Konva.Shape,
'globalCompositeOperation',
'source-over'
);
/**
* get/set globalCompositeOperation of a shape
* @name globalCompositeOperation
* @method
* @memberof Konva.Shape.prototype
* @param {Number} blur
* @returns {Number}
* @example
* // get shadow blur
* var globalCompositeOperation = shape.globalCompositeOperation();
*
* // set shadow blur
* shape.globalCompositeOperation('source-in');
*/
Konva.Factory.addGetterSetter(Konva.Shape, 'shadowBlur');
/**

10
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -317,6 +317,7 @@
_drawCachedSceneCanvas: function(context) {
context.save();
context._applyOpacity(this);
context._applyGlobalCompositeOperation(this);
context.translate(this._cache.canvas.x, this._cache.canvas.y);
var cacheCanvas = this._getCachedSceneCanvas();
@ -2040,6 +2041,26 @@
* node.y(5);
*/
Konva.Factory.addGetterSetter(
Konva.Node,
'globalCompositeOperation',
'source-over'
);
/**
* get/set globalCompositeOperation of a shape
* @name globalCompositeOperation
* @method
* @memberof Konva.Node.prototype
* @param {Number} blur
* @returns {Number}
* @example
* // get shadow blur
* var globalCompositeOperation = shape.globalCompositeOperation();
*
* // set shadow blur
* shape.globalCompositeOperation('source-in');
*/
Konva.Factory.addGetterSetter(Konva.Node, 'opacity', 1);
/**

View File

@ -786,27 +786,6 @@
Konva.Validators.alphaComponent
);
Konva.Factory.addGetterSetter(
Konva.Shape,
'globalCompositeOperation',
'source-over'
);
/**
* get/set globalCompositeOperation of a shape
* @name globalCompositeOperation
* @method
* @memberof Konva.Shape.prototype
* @param {Number} blur
* @returns {Number}
* @example
* // get shadow blur
* var globalCompositeOperation = shape.globalCompositeOperation();
*
* // set shadow blur
* shape.globalCompositeOperation('source-in');
*/
Konva.Factory.addGetterSetter(Konva.Shape, 'shadowBlur');
/**