Aymeric Posted August 22, 2013 Share Posted August 22, 2013 Hey guys, I've several MovieClips using SpriteSheets. I add mousedown/touchstart callback to them. However it is called even if I don't click right on the SpriteSheet but in an "empty" part of my MC. Any ideas to enable only a pixel perfect collision detection? Thanks. Quote Link to comment Share on other sites More sharing options...
Mat Groves Posted August 22, 2013 Share Posted August 22, 2013 Pixel Perfect collision doe snot exist in pixi at this time I'm afraid :/It does allow you to use custom hit areas though. You can set a smaller rectangle, a circle or even a custom polygon. egvar mySprite = PIXI.Sprite.fromImage("myPicture.png");mySprite.hitArea = new PIXI.Rectangle(30, 30, 100 ,100);hope that helps! Quote Link to comment Share on other sites More sharing options...
Aymeric Posted August 22, 2013 Author Share Posted August 22, 2013 Ok, thanks Mat! A polygon should do the job Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.