Awesome. Thanks for the response. Iv'e been looking at some of the plugins and the templates trying to figure out how everything fits together. I'm trying to have a plugin that distorts an image based on mouse input.I see plugins that draw images are of the world type and plugins that capture user input are of the type object. Is it possible to have one plugin that does both. Or do I need to have my plugin communicate with the mouse plugin? If so then whats the best way to set up the event sheet. I was thinking some thing like mouse-left button is down, then have that call a function.
function mouseDown(e){
mouseIsDown=true;
mouseDownPosLastX=e.clientX;
mouseDownPosLastY=e.clientY;
}
So my plugin can see the x and y position. Is this type of interaction possible? Sorry for hitting you with so many questions at once.