aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-examples
diff options
context:
space:
mode:
authorJulien Gouesse <[email protected]>2023-03-07 23:12:28 +0100
committerJulien Gouesse <[email protected]>2023-03-07 23:12:28 +0100
commit4fff8b5021632b5086976552833581196e3b81a3 (patch)
tree00510f6e89ad8a025f83deee8abd0fe4e562790e /ardor3d-examples
parent275f2eb1ce54e7a719717324c13e8685a1ac67bd (diff)
Removes the class handling edges, fixes the alpha color component management and supports the colors inside the faces 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 be255dc..46e0c29 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/vertcube.off");
+ final OffGeometryStore storage = importer.load("off/toilet.off");
System.out.println("Importing Took " + (System.currentTimeMillis() - time) + " ms");
final Node model = storage.getScene();