2
0
Casey Clyde 2 жил өмнө
parent
commit
eb4098a9a0
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      h3d/mat/Pass.hx

+ 1 - 1
h3d/mat/Pass.hx

@@ -113,7 +113,7 @@ class Pass {
 			blend(OneMinusDstColor, One);
 			blendAlphaSrc = One;
 		case Multiply: // Out = Dst * Src + 0 * Dst
-			blend(DstColor, One);
+			blend(DstColor, Zero);
 			blendAlphaSrc = One;
 		case AlphaMultiply: // Out = Dst * Src + (1 - SrcA) * Dst
 			blend(DstColor, OneMinusSrcAlpha);