Extending Behavior class

Hi!

I have a Java3D application that extends Behavior class and uses WakeupOnAWTEvent class as wake up criterion. I need to port this app to Xith. I don’t find class matching WakeupOnAWTEvent in Xith3D API. What should I use in this case?

Just add AWT listeners to your canvas. You’ll want to add the events to a queue so that they can be handled synchronously with the rendering thread.

Thanks for advice!