6

是否可以使透明矩形可点击?我不想填充它,所以它看起来像

     shape.graphics.setStrokeStyle(2).beginStroke("#000").rect(0, 0, 100, 100)
4

1 回答 1

13

这是我如何做到的代码:

var shape = new createjs.Shape();    
shape.graphics.setStrokeStyle(2).beginStroke("#000").rect(0, 0, 100, 100);
var hit = new createjs.Shape();
hit.graphics.beginFill("#000").rect(0, 0, 100, 100);
shape.hitArea = hit;
于 2013-06-03T07:41:29.527 回答