@@ -4085,6 +4085,8 @@ float4 CybranShieldImpactPS( SHIELDIMPACT_VERTEX vertex, uniform float fadeTime,
4085
4085
4086
4086
float4 PhaseShieldPS ( VERTEXNORMAL_VERTEX vertex ) : COLOR
4087
4087
{
4088
+ if (1 == mirrored) clip (vertex.depth.x);
4089
+
4088
4090
float2 tc1 = vertex.texcoord0.xy * 0.5 ;
4089
4091
tc1.x += 0.005 * vertex.material.x;
4090
4092
tc1.y += 0.02 * vertex.material.x;
@@ -4108,6 +4110,8 @@ float4 PhaseShieldPS( VERTEXNORMAL_VERTEX vertex ) : COLOR
4108
4110
4109
4111
float4 AeonPhaseShieldPS ( VERTEXNORMAL_VERTEX vertex ) : COLOR
4110
4112
{
4113
+ if (1 == mirrored) clip (vertex.depth.x);
4114
+
4111
4115
float2 tc1 = vertex.texcoord0.xy * 2 ;
4112
4116
tc1.x += 0.005 * vertex.material.x;
4113
4117
tc1.y += 0.02 * vertex.material.x;
@@ -4131,6 +4135,8 @@ float4 AeonPhaseShieldPS( VERTEXNORMAL_VERTEX vertex ) : COLOR
4131
4135
4132
4136
float4 CybranPhaseShieldPS ( VERTEXNORMAL_VERTEX vertex ) : COLOR
4133
4137
{
4138
+ if (1 == mirrored) clip (vertex.depth.x);
4139
+
4134
4140
float2 tc1 = vertex.texcoord0.xy * 2 ;
4135
4141
tc1.x += 0.1 * vertex.material.x;
4136
4142
tc1.y += 0.5 * vertex.material.x;
@@ -4156,6 +4162,8 @@ float4 CybranPhaseShieldPS( VERTEXNORMAL_VERTEX vertex ) : COLOR
4156
4162
4157
4163
float4 SeraphimPhaseShieldPS ( VERTEXNORMAL_VERTEX vertex ) : COLOR
4158
4164
{
4165
+ if (1 == mirrored) clip (vertex.depth.x);
4166
+
4159
4167
float2 tc1 = vertex.texcoord0.xy * 0.5 ;
4160
4168
tc1.x += 0.005 * vertex.material.x;
4161
4169
tc1.y += 0.02 * vertex.material.x;
0 commit comments