是否可以制作透明的直肠可点击? 我不想填写它看起来像
shape.graphics.setStrokeStyle(2).beginStroke("#000").rect(0, 0, 100, 100)
答案 0 :(得分:11)
这是代码我是如何做到的:
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;