Hi,
I'm pretty new to Java3d, and I am having trouble trying to figure out
how to prevent an unwanted ghost image from appearing in my scene. In
my behavior, I am adjusting the location and position of an object
that I am tracking from my view, and I also adjust the the view to
look at the new location of the object. Java3D first renders the
object in its new position and orientation using the old view config,
then it is redrawn again using the new view config (which is always
centered on the screen and is what I want). The result of this is a
ghost trail as the object moves and is tracked.
What is the correct approach to have my behavior do all object and
view updates before rendering? Do I need to do offscreen rendering to
fix this?
Thanks