Stew Posted March 29, 2014 Posted March 29, 2014 client.rotateCameraToAngle(arg0); So thats the string (I dont know if thats what you call it) that im using to allow the client to better click the model i want it to now I have 2 questions the first is how do I find out what position my camera is in the second question is, can anybody give me an example of how the "String" should look For example - client.rotateCameraToAngle(3209,2849); or something? Thanks in advance!
Brown Posted March 29, 2014 Posted March 29, 2014 If you want to rotate the camera to an object it'd be easier to use client.moveCameraToEntity() Example: Entity object = closestObjectForName("OBJECT NAME"); if(object != null){ if(object.isVisible()){ //Do whatever you have to if it's visible } else { client.moveCameraToEntity(object); } }