aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-examples
diff options
context:
space:
mode:
authorJulien Gouesse <[email protected]>2023-03-09 20:45:55 +0100
committerJulien Gouesse <[email protected]>2023-03-09 20:45:55 +0100
commit30b3a2915914c7776b1722423cb3005f6b2c7dfc (patch)
tree92f29add56800c04ec7eeecb7a8f85f7f754d9b0 /ardor3d-examples
parent35f8ba658f9ac71f1971b27ca7f667fa74dceb6b (diff)
Supports the vertex data in all known orders in the OFF importer
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 4f27d40..be255dc 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/vertcube.off");
System.out.println("Importing Took " + (System.currentTimeMillis() - time) + " ms");
final Node model = storage.getScene();