From d29ae58e34c49512d0cbd57891bd02e3a45dbc4f Mon Sep 17 00:00:00 2001 From: dagnelies Date: Mon, 7 Sep 2015 16:43:51 +0200 Subject: [PATCH] Fixed ColorMatrix Second part described in #26 --- createjs/easeljs/ColorMatrixFilter.hx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/createjs/easeljs/ColorMatrixFilter.hx b/createjs/easeljs/ColorMatrixFilter.hx index 83b0be9..8bb506f 100644 --- a/createjs/easeljs/ColorMatrixFilter.hx +++ b/createjs/easeljs/ColorMatrixFilter.hx @@ -2,7 +2,8 @@ package createjs.easeljs; @:native("createjs.ColorMatrixFilter") extern class ColorMatrixFilter extends Filter { - + + @:overload(function(matrix:ColorMatrix):Void{}) public function new(matrix:Array):Void; override public function clone():ColorMatrixFilter; -} \ No newline at end of file +}