changed drawFunc to sceneFunc and drawHitFunc to hitFunc

This commit is contained in:
Eric Rowell
2014-01-04 23:34:01 -08:00
parent ff952bf958
commit 7e2c6c97f8
20 changed files with 51 additions and 51 deletions

View File

@@ -933,7 +933,7 @@ suite('MouseEvents', function() {
strokeWidth: 4,
fill: 'red',
stroke: 'black',
drawHitFunc: function(context) {
hitFunc: function(context) {
var _context = context._context;
_context.beginPath();
@@ -990,7 +990,7 @@ suite('MouseEvents', function() {
// set drawBufferFunc with setter
circle.setDrawHitFunc(function(context) {
circle.hitFunc(function(context) {
var _context = context._context;
_context.beginPath();
_context.arc(0, 0, this.getRadius() - 50, 0, Math.PI * 2, true);