소스 검색

fix for issue #99 (pr #1082)

Stephen Gold 6 년 전
부모
커밋
194ae883c5

+ 2 - 2
jme3-niftygui/src/main/java/com/jme3/niftygui/JmeBatchRenderBackend.java

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009-2018 jMonkeyEngine
+ * Copyright (c) 2009-2019 jMonkeyEngine
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -541,7 +541,7 @@ public class JmeBatchRenderBackend implements BatchRenderBackend {
       } else if (blendMode == BlendMode.BLEND) {
           return RenderState.BlendMode.Alpha;
       } else if (blendMode == BlendMode.MULIPLY) {
-          return RenderState.BlendMode.Modulate;
+          return RenderState.BlendMode.Alpha;
       } else {
           throw new UnsupportedOperationException();
       }

+ 2 - 2
jme3-niftygui/src/main/java/com/jme3/niftygui/RenderDeviceJme.java

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009-2012 jMonkeyEngine
+ * Copyright (c) 2009-2019 jMonkeyEngine
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -209,7 +209,7 @@ public class RenderDeviceJme implements RenderDevice {
         } else if (blendMode == BlendMode.BLEND) {
             return RenderState.BlendMode.Alpha;
         } else if (blendMode == BlendMode.MULIPLY) {
-            return RenderState.BlendMode.Modulate;
+            return RenderState.BlendMode.Alpha;
         } else {
             throw new UnsupportedOperationException();
         }