Jump to content

A way to disable builtin camera turning on interact


Recommended Posts

Posted
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.

  • Like 1
Posted

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.

  • Like 2

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...