January 17, 20188 yr I was wondering if there is a way to disable the automatic camera turning when you use the interact function on object. The automatic camera turing has minor flaws and sometimes I want to do the whole camera turning manually. Thanks in advance.
January 17, 20188 yr 2 minutes ago, BobSmokey said: I was wondering if there is a way to disable the automatic camera turning when you use the interact function on object. The automatic camera turing has minor flaws and sometimes I want to do the whole camera turning manually. Thanks in advance. Use an InteractionEvent with the disable camera option. At least I think there's a disable camera method, cba to check though.
January 17, 20188 yr As Explv said, you need to use InteractionEvent "directly" and not the "slimmed down" version which is the interact method. InteractionEvent interactionEvent = new InteractionEvent(entity, action); interactionEvent.setOperateCamera(false); execute(interactionEvent); RS2Object.interact() uses the same thing, just with some default parameters. I think it's mentioned in the API what those default values are.
January 17, 20188 yr Moved to scripting help section, please ask any future questions in this section.
Create an account or sign in to comment