aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-examples
diff options
context:
space:
mode:
authorJulien Gouesse <[email protected]>2023-03-08 23:52:22 +0100
committerJulien Gouesse <[email protected]>2023-03-08 23:52:22 +0100
commite7b631c42fc83a6d8a9485a5b6c3d26dbdb5bc76 (patch)
tree6e8cd991e00f576eff9aff7dce28a516a7dd26af /ardor3d-examples
parent7d0fd92ececa9499150cc7a4132ed5b3e7c67a4d (diff)
Detects the 64 distinct off keywords in the OFF importer, clarifies which ones are fully supported
Diffstat (limited to 'ardor3d-examples')
-rw-r--r--ardor3d-examples/src/main/java/com/ardor3d/example/pipeline/SimpleOffExample.java2
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 c8b3f19..4f27d40 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/cube.off");
+ final OffGeometryStore storage = importer.load("off/mushroom.off");
System.out.println("Importing Took " + (System.currentTimeMillis() - time) + " ms");
final Node model = storage.getScene();