Explorar el Código

Merge pull request #683 from jmecn/master

Fix typo on LightPosition and LightDirection
empirephoenix hace 8 años
padre
commit
a2d7ec7f95
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      jme3-core/src/main/java/com/jme3/shader/UniformBinding.java

+ 2 - 2
jme3-core/src/main/java/com/jme3/shader/UniformBinding.java

@@ -174,13 +174,13 @@ public enum UniformBinding {
     FrameRate("float"),
     
     /**
-     * The light position when rendering in multi pass mode
+     * The light direction when rendering in multi pass mode
      * Type: vec4
      */
     LightDirection("vec4"),
     
     /**
-     * The light direction when rendering in multi pass mode
+     * The light position when rendering in multi pass mode
      * Type: vec4
      */
     LightPosition("vec4"),