Skip to content

Commit 1cc43d9

Browse files
author
Michael Burnett
authored
Fix for issue #1381
1 parent 72b751c commit 1cc43d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jme3-terrain/src/main/java/com/jme3/terrain/geomipmap/lodcalc/DistanceLodCalculator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public void write(JmeExporter ex) throws IOException {
126126
public void read(JmeImporter im) throws IOException {
127127
InputCapsule ic = im.getCapsule(this);
128128
size = ic.readInt("patchSize", 32);
129-
lodMultiplier = ic.readFloat("lodMultiplier", 2.7f);
129+
lodMultiplier = ic.readFloat("lodMultiplier", 32f);
130130
}
131131

132132
@Override

0 commit comments

Comments
 (0)