At 09:59 AM 10/17/99 -0700, Dong-Woo Lee wrote:
>--------- UNCAUGHT EXCEPTION ---------
>javax.media.j3d.RestrictedAccessException: Group: only
>a BranchGroup node may be added

This is real easy to get.  The way it happens to me is that I
I build a little piece of scene graph with a TransformGroup at the
root and add it and get this. So you have to do something like

TransformGroup tg = laboriouslyBuildYourSceneGraphStuff();
Branchgroup bg = new BranchGroup();
bg.addChild(tg);

 // later

liveSceneGraph.addChild(bg);

 -Tim

===========================================================================
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".

Reply via email to