Skip to content

Commit

Permalink
Unify firstPerson_righthand, and firstPerson_lefthand like the thirdp…
Browse files Browse the repository at this point in the history
…erson variants.
  • Loading branch information
AlgorithmX2 committed Sep 24, 2017
1 parent 13c96ec commit c6d9311
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -28,8 +28,7 @@ public abstract class BaseBakedPerspectiveModel implements IPerspectiveAwareMode
ground = getMatrix( 0, 3 / 16.0f, 0, 0, 0, 0, 0.25f );
fixed = getMatrix( 0, 0, 0, 0, 0, 0, 0.5f );
thirdPerson_lefthand = thirdPerson_righthand = getMatrix( 0, 2.5f / 16.0f, 0, 75, 45, 0, 0.375f );
firstPerson_righthand = getMatrix( 0, 0, 0, 0, 45, 0, 0.40f );
firstPerson_lefthand = getMatrix( 0, 0, 0, 0, 0, 225, 0.40f );
firstPerson_righthand = firstPerson_lefthand = getMatrix( 0, 0, 0, 0, 45, 0, 0.40f );
}

private static Matrix4f getMatrix(
Expand Down

0 comments on commit c6d9311

Please sign in to comment.