Jump to content

A way to disable builtin camera turning on interact


BobSmokey

Recommended Posts

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
Link to comment
Share on other sites

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
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

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