Skip to content

Commit

Permalink
Use loom snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
azzy committed Feb 13, 2022
1 parent a79f938 commit cb512a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.11.+'
id 'fabric-loom' version '0.11-SNAPSHOT'
id 'maven-publish'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ out vec4 fragColor;
const float pi = 3.141592654;
const float tau = pi * 2;

const float radius = 10.0;
const float radius = 20.0;

void main() {
vec4 blur = texture(LightSourceSampler, texCoord);
Expand All @@ -22,6 +22,6 @@ void main() {
}
}

blur /= 33;
blur /= 18;
fragColor = vec4((texture(DiffuseSampler, texCoord) + blur).rgb, 1);
}

0 comments on commit cb512a1

Please sign in to comment.