Re: [JAVA3D] altering added objects

2004-09-24 Thread Mike Pilone
Darren, You will need to keep a reference to the objects in the scenegraph, or set the ALOW_CHILDREN_READ capabilities on the group to allow you to traverse the tree yourself. Normally the first solution is easier. As for the capabilities, it depends on what you want to do. If you want to modify

Re: [JAVA3D] altering added objects

2004-09-24 Thread romil shah
Thats right. I just ran into the same problem and I fixed it by browsing through the FAQ's. You need to set the capabilities of the Sape3D object. so do :: object.getShape().setCapability( ); Well, just set the capabilities and then :: object.getAppearance().set whatever. All the best, Romil

Re: [JAVA3D] altering added objects

2004-09-24 Thread FantasyFooty.org
Is there not one function that allows you to set all capabilities on an object? - Original Message - From: "romil shah" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 25, 2004 1:15 AM Subject: Re: [JAVA3D] altering added objects > Thats right. I just ran into the s