Skip to content
Snippets Groups Projects
Commit cc4ed62a authored by dg's avatar dg
Browse files

Fix stone shader

git-svn-id: http://svn.net-core.org/repos/t-engine4@5546 51575b47-30f0-44d4-a5cc-537603b46e54
parent 873cc00f
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ void main( void ) {
float d = length(uv) * 2.0;
if (d > 0.9) gl_FragColor.a *= 1.0 - 10.0 * (d - 0.9);
else if (d > 1.0) gl_FragColor.a = 0.0;
if (hide_center > 0 && d < 0.5) {
if (hide_center > 0.0 && d < 0.5) {
gl_FragColor.a *= d * d * 4.0;
}
gl_FragColor.a *= ba * 0.7;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment