Hello all, im using the nighty of paper.js (for the hitTest() bug on raster items) and this is my first experience with paperjs.
In my project, i have many layers (only one visible at time), and every layer have 3 groups: group_top, group_middle and group_bottom.
The top and bottom group contains only graphical elements, e.g backgrounds images and some kind of effects (shadows, lights, etc..) that should never be used for hitTest(), instead the middle group will contain many Items (raster and textItems) that should be moved even with drag'n'drop.
Im wondering what can be a good practice to accomplish this - my first thought was to get the bounds of every item into the middle group at every mouseDown, then considering the index order check manually which element to move (this mean to almost create a manual-hitTest), becose in the documentation i didnt find how to tell the hitTest to consider only items inside a specific group (without marking it as selected, i dont like to have the blue guidelines visibles).
So, what you guys think about?
p.s: apologies for my bad english