1

Painting texture problem

Mati_Szkielet's Avatar Mati_Szkielet12/3/23 6:39 am history
1 emeralds 98
Hello, I am trying to change a painting texture and i found a script that allows me to make the painting background invisible but the weird border is still there. I checked every single folder looking for a file that contains just this texture but I can't find it. Any ideas? Here you can see how it looks and the script: (if you are able to fix this writing script or modifying this one then I am okay with this)





SCRIPT:

#version 150




#moj_import <fog.glsl>




uniform sampler2D Sampler0;




uniform vec4 ColorModulator;

uniform float FogStart;

uniform float FogEnd;

uniform vec4 FogColor;




in float vertexDistance;

in vec4 vertexColor;

in vec4 lightMapColor;

in vec4 overlayColor;

in vec2 texCoord0;

in vec4 normal;




out vec4 fragColor;




void main() {

vec4 color = texture(Sampler0, texCoord0) * vertexColor * ColorModulator;

color.rgb = mix(overlayColor.rgb, color.rgb, overlayColor.a);

if ( color.a == 0.0 ) discard;

color *= lightMapColor;

fragColor = linear_fog(color, vertexDistance, FogStart, FogEnd, FogColor);

}
Posted by Mati_Szkielet's Avatar
Mati_Szkielet
Level 1 : New Miner
0

Create an account or sign in to comment.

Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome