Skip to content

Instantly share code, notes, and snippets.

@novogrammer
Created June 22, 2015 13:31
Show Gist options
  • Save novogrammer/4f22a7df63e92e5375f5 to your computer and use it in GitHub Desktop.
Save novogrammer/4f22a7df63e92e5375f5 to your computer and use it in GitHub Desktop.
CreateJSで透明なMovieClipの当たり判定をそれっぽくするやつ
function setupHitArea(mc){
var b=mc.getBounds();
mc.hitArea=new createjs.Shape();
mc.hitArea.graphics=new createjs.Graphics().beginFill("#FFF").drawRect(b.x,b.y,b.width,b.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment