[Solved] ChaseCamera no longer rotating around character after re-enabling it

'Ello! I’m writing my own game and the point is that when I disable the chase camera and re-enable it, it’s no longer rotating around the player (but I’m still able to zoom in and out). What can I do about it?



Thanks,

Lucas

@lucaseasedup said:
What can I do about it?

Thanks,
Lucas

You can, post a test case demonstrating the issue, so we can investigate it.

Well, these are just two calls:

[java]

chaseCamera.setEnabled(false);

[/java]



and then, later:

[java]

chaseCamera.setEnabled(true);

[/java]



But I’ve already found a solution – just call:

[java]

chaseCamera.setEnabled(true);

chaseCamera.setDragToRotate(false);

[/java]

Every time you want to re-enable a ChaseCamera. That’s all. It works.



Thanks.