Hi, you don't need to extend any class, you can add an event listener to the scene like this:
scene.addEventListener( Scene3D.UPDATE_EVENT, updateEventListener );
You can then add your input processing code into the updateEventListener function.
Regards,