[libgdx] Minor docs typo.

This commit is contained in:
John 2017-02-24 20:48:09 +08:00 committed by GitHub
parent 2c92a4689b
commit 55e43c0ca7

View File

@ -579,7 +579,7 @@ public class Bone implements Updatable {
return atan2(cos * c + sin * d, cos * a + sin * b) * radDeg;
}
/** Rotates the world transform the specified amount and sets {@link #isAppliedValid()} to false.
/** Rotates the world transform the specified amount and sets {@link #appliedValid()} to false.
* {@link #updateWorldTransform()} will need to be called on any child bones, recursively, and any constraints reapplied. */
public void rotateWorld (float degrees) {
float cos = cosDeg(degrees), sin = sinDeg(degrees);