First off, sorry if this should be a part of this thread
http://xith.org/forum/index.php/topic,759.0.htmlAnyways, I had a question about manipulating the FPIH so that on mouse movement it does not rotate the avatar. The scenario is that I am trying to implement a point and click interface. I want the view to be able to be rotated around the avatar, but I obviously don't want the avatar to be rotated. By the way, I am calling setMouseMovementSuspended(false) on right mouse button press and then I suspend again when the right mouse button is released. I am having a hard time trying to understand all that is going on in the update method in FPIH and it isn't helping that I can't really trace through at specific times/situations because of how many times update is called. I tried changing it so that the updateAvatars function was only called when the mouse was not moving and this seemed to work because when I was moving the mouse it would rotate the view but not the avatar. However, when I released the right mouse button the avatar would move in a seemingly random direction and sometimes even downwards which would quite often place it through the ground and then falling. I think that this is happening because the view is getting transformed/translated but the avatar isn't and then when it gets transformed/translated based on the view it appears to go crazy. I was hoping that someone could clarify this for me and/or let me know if they have been able to do something like this (and maybe even share some code

). I was thinking that in order to get this to work there would have to be different transforms for both the mouse generated and the keyboard generated (and maybe scroll generated too) and then when updating the avatars instead of using the view to transform/translate the applicaple vectors created by the mouse and/or keyboard (and/or scroll) would be. In this way there could be a setting that would allow the avatars to be updated on certain events rather than all.
I hope that all of that makes sense and thanks for bearing through that long post
