Comparing version
@@ -230,2 +230,3 @@ var __defProp = Object.defineProperty; | ||
#include <fog_pars_vertex> | ||
#include <clipping_planes_pars_vertex> | ||
@@ -293,2 +294,3 @@ attribute vec3 previous; | ||
vec4 mvPosition = modelViewMatrix * vec4(position, 1.0); | ||
#include <clipping_planes_vertex> | ||
#include <fog_vertex> | ||
@@ -302,2 +304,3 @@ } | ||
#include <logdepthbuf_pars_fragment> | ||
#include <clipping_planes_pars_fragment> | ||
@@ -324,12 +327,11 @@ uniform sampler2D map; | ||
#include <logdepthbuf_fragment> | ||
vec4 c = vColor; | ||
if (useGradient == 1.) c = vec4(mix(gradient[0], gradient[1], vCounters), 1.0); | ||
if (useMap == 1.) c *= texture2D(map, vUV * repeat); | ||
if (useAlphaMap == 1.) c.a *= texture2D(alphaMap, vUV * repeat).a; | ||
if (c.a < alphaTest) discard; | ||
if (useDash == 1.) { | ||
c.a *= ceil(mod(vCounters + dashOffset, dashArray) - (dashArray * dashRatio)); | ||
} | ||
gl_FragColor = c; | ||
gl_FragColor.a *= step(vCounters, visibility); | ||
vec4 diffuseColor = vColor; | ||
if (useGradient == 1.) diffuseColor = vec4(mix(gradient[0], gradient[1], vCounters), 1.0); | ||
if (useMap == 1.) diffuseColor *= texture2D(map, vUV * repeat); | ||
if (useAlphaMap == 1.) diffuseColor.a *= texture2D(alphaMap, vUV * repeat).a; | ||
if (diffuseColor.a < alphaTest) discard; | ||
if (useDash == 1.) diffuseColor.a *= ceil(mod(vCounters + dashOffset, dashArray) - (dashArray * dashRatio)); | ||
diffuseColor.a *= step(vCounters, visibility); | ||
#include <clipping_planes_fragment> | ||
gl_FragColor = diffuseColor; | ||
#include <fog_fragment> | ||
@@ -336,0 +338,0 @@ #include <tonemapping_fragment> |
{ | ||
"name": "meshline", | ||
"version": "3.2.0", | ||
"version": "3.3.0", | ||
"author": "Jaume Sanchez <the.spite@gmail.com> (https://www.clicktorelease.com)", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
51971
0.89%1332
0.3%