Why two operations take effect at the same time

When I use handles,The model rotates at the same time.How to prevent model rotation when I use handles?
1

My guess would be that in your operator stack you have defined the handle operator after the orbit operator. The orbit operator does not consume its events so it should come last in the stack. Here is an example of a correct operator stack:

hwv.operatorManager.clear()
hwv.operatorManager.set(Communicator.OperatorId.Orbit,0)
hwv.operatorManager.set(Communicator.OperatorId.Handle,1)

I hope this helps

1 Like

Thank you very much for your answer, which is very useful to me

1 Like