sl1nky 2 Share Posted December 8, 2020 (edited) I would like to disable the camera movement when i call Walking.walk(). Is this possible? For example; it rotates the camera to the same position, every time it attempts to interact with a ladder. This creates a pattern, walking to and from a bank. Edited December 8, 2020 by sl1nky Link to comment Share on other sites More sharing options...
Roma 2214 Share Posted December 9, 2020 You will have to slightly modify walking and as for the interactions you will have to do something like this: Entity e = getSomeEntity(); if (e != null) { EntityDestination ed = new EntityDestination(e); if (new InteractionEvent(ed).interact("action", InteractionSetting.EMPTY_SETTING)) { ... } } sl1nky 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now