This was due to a bug in the code where triangle data were stored after calculation.
experimental
Nehon 10 years ago
parent 57dd2748e2
commit 95d5fdf9c5
  1. 6
      jme3-core/src/main/java/com/jme3/util/TangentBinormalGenerator.java

@ -612,9 +612,9 @@ public class TangentBinormalGenerator {
normal.normalizeLocal();
return new TriangleData(
tangent,
binormal,
normal);
tangent.clone(),
binormal.clone(),
normal.clone());
} finally {
tmp.release();
}

Loading…
Cancel
Save