Skip to content

Commit

Permalink
Removed an unused uniform set method
Browse files Browse the repository at this point in the history
  • Loading branch information
mineLdiver committed Aug 19, 2023
1 parent 20b6d4d commit 4796eba
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,6 @@ public String getName() {
return this.name;
}

public final void set(float value1) {
this.floatData.position(0);
this.floatData.put(0, value1);
this.markStateDirty();
}

public final void set(float value1, float value2, float value3) {
this.floatData.position(0);
this.floatData.put(0, value1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

@Environment(EnvType.CLIENT)
public class Uniform {
public void set(float value1) {}

public void set(float value1, float value2, float value3) {}

public void setForDataType(float value1, float value2, float value3, float value4) {}
Expand Down

0 comments on commit 4796eba

Please sign in to comment.