Hi all,
I am using the Josh DeFord's 3DS Loader
(http://www.j3d.org/utilities/loaders/3ds/deford.html) to load an
animated 3DS file. I need to start / stop the animation. Do you know
if this is possible and how it could be done?
Thanks.
Flavio
---------------------------------------------
PS -> Additional information:
The scene is loaded just like this:
public Scene getScene(URL location) {
Scene scene = null;
try {
return (new Loader3DS()).load(location);
} catch (Exception e) {
e.printStackTrace();
usage(e.getMessage());
}
return null;
}
and added to a BranchGroup like this:
Scene scene = getScene(location);
universeBranch = createUniverse(view, scene);
view.addCanvas3D(canvas);
turnOnBehaviors(scene.getBehaviorNodes());
BranchGroup modelGroup = scene.getSceneGroup();
modelGroup.compile();
universeBranch.addChild(modelGroup);
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JAVA3D-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".