Skip to content

Commit 1604283

Browse files
committed
missed a file.
Signed-off-by: Grant Skinner <info@gskinner.com>
1 parent 71fb4be commit 1604283

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/easeljs/display/DisplayObject.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,16 @@ var p = DisplayObject.prototype;
675675
ctx.shadowOffsetY = shadow.offsetY;
676676
ctx.shadowBlur = shadow.blur;
677677
}
678+
679+
680+
/**
681+
* @method _tick
682+
* @protected
683+
* @param Boolean advance Indicates whether any related animations should advance.
684+
**/
685+
p._tick = function(advance) {
686+
if (this.tick) { this.tick(); }
687+
}
678688

679689
/**
680690
* @method _testHit

0 commit comments

Comments
 (0)