Skip to content

Commit

Permalink
Caps
Browse files Browse the repository at this point in the history
  • Loading branch information
MEEPofFaith committed Apr 29, 2024
1 parent a98d3db commit ed110c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions src/drunkustry/graphics/DrunkShaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
import static mindustry.Vars.*;

public class DrunkShaders{
public static PassthroughShader passThrough;
public static PassThroughShader passThrough;
public static HallucinationShader colorHallucination;
public static AberrationShader chromaticAberration;
public static DistortionShader distortion;
public static InversionShader inversion;

public static void init(){
passThrough = new PassthroughShader();
passThrough = new PassThroughShader();
colorHallucination = new HallucinationShader();
chromaticAberration = new AberrationShader();
distortion = new DistortionShader();
Expand Down Expand Up @@ -170,8 +170,8 @@ public void apply(){
}
}

public static class PassthroughShader extends Shader{
public PassthroughShader(){
public static class PassThroughShader extends Shader{
public PassThroughShader(){
super(getShaderFi("screenspace.vert"), getShaderFi("passThrough.frag"));
}
}
Expand Down

0 comments on commit ed110c4

Please sign in to comment.