Skip to content

Commit

Permalink
Fixed first-person hand not rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocelot5836 committed Nov 7, 2024
1 parent d88b624 commit 5acb71e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ public Builder addColorBuffer(AdvancedFboAttachment attachment) {
* @param textureId The id of the texture to add
*/
public Builder addColorTextureWrapper(int textureId) {
return this.addColorTextureWrapper(textureId, 0);
return this.addColorTextureWrapper(textureId, -1);
}

/**
Expand Down Expand Up @@ -773,7 +773,7 @@ public Builder setDepthBuffer(@Nullable AdvancedFboAttachment attachment) {
* @param textureId The id of the texture to add
*/
public Builder setDepthTextureWrapper(int textureId) {
return this.setDepthTextureWrapper(textureId, 0);
return this.setDepthTextureWrapper(textureId, -1);
}

/**
Expand Down

0 comments on commit 5acb71e

Please sign in to comment.