guess I'm just trying to avoid rolling my own dragging functionality - anyone know of any libraries out there that have a startDrag() equivalent where you can use, say, a circular radius for the drag bounds, rather than a rectangular box?
|
|
(For circular drag area) - What you need to do is: a) Mouse_down: Store start position. Start listening to Enter_frame. b) Enter_Frame: Check distance from mouse position of mouse to start pos (use pythagoras) c) only move your object if the distance is less than x d) Mouse_up: Stop listening to enterframe |
|||
|
|
You can use a simple circular collision detection routine, it works out the hit area using the radius of the objects and distance between them. Maybe you will have to manually do this calculation in your onDrag method and stop the drag on collision with the circular bounds calculated below.
|
|||||||||
|
|
Nope, you need to do pixel-perfect collision (or in this case, mouse clicking) in order to do that. By nature all display objects always have rectangular bounds to them. So basically you'd have to do something like this:
Note this is just pseudo code, you'll have to figure out what uint value transparent comes up as, and also you'll have to account for where the origin point of the sprite is when drawing to bitmap. Say you have a sprite and the contents are inside, you're going to need to create a Matrix object that has a X and Y offset that are negative .5 times the width of your sprite in order to draw it properly. |
|||||
|