Skip to content

Commit

Permalink
setPosition -> prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Sep 11, 2021
1 parent 823937f commit 31855c6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -13,7 +13,8 @@ public ShadowFrustum(Matrix4f view, Matrix4f projection, BoxCuller boxCuller) {
this.boxCuller = boxCuller;
}

public void setPosition(double cameraX, double cameraY, double cameraZ) {
@Override
public void prepare(double cameraX, double cameraY, double cameraZ) {
super.prepare(cameraX, cameraY, cameraZ);

boxCuller.setPosition(cameraX, cameraY, cameraZ);

0 comments on commit 31855c6

Please sign in to comment.