diff options
author | Julien Gouesse <[email protected]> | 2023-03-09 20:01:10 +0100 |
---|---|---|
committer | Julien Gouesse <[email protected]> | 2023-03-09 20:01:10 +0100 |
commit | cd411ffb5f093d1caed80af9df734f6af7f12126 (patch) | |
tree | 083d6eaf4e260b32db4290ac45f697d783a909e3 /ardor3d-examples | |
parent | e7b631c42fc83a6d8a9485a5b6c3d26dbdb5bc76 (diff) |
Modifies the log level and uncomments the mesh optimization in the OFF importer
Diffstat (limited to 'ardor3d-examples')
-rw-r--r-- | ardor3d-examples/src/main/java/com/ardor3d/example/pipeline/SimpleOffExample.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ardor3d-examples/src/main/java/com/ardor3d/example/pipeline/SimpleOffExample.java b/ardor3d-examples/src/main/java/com/ardor3d/example/pipeline/SimpleOffExample.java index 4f27d40..7ba4d2f 100644 --- a/ardor3d-examples/src/main/java/com/ardor3d/example/pipeline/SimpleOffExample.java +++ b/ardor3d-examples/src/main/java/com/ardor3d/example/pipeline/SimpleOffExample.java @@ -36,7 +36,7 @@ public class SimpleOffExample extends ExampleBase { // Load the OFF scene final long time = System.currentTimeMillis(); final OffImporter importer = new OffImporter(); - final OffGeometryStore storage = importer.load("off/mushroom.off"); + final OffGeometryStore storage = importer.load("off/socket.off"); System.out.println("Importing Took " + (System.currentTimeMillis() - time) + " ms"); final Node model = storage.getScene(); |