vote up 0 vote down star

Hi all,

I'm working on a game in Java3D. I read all my level info from a file and it works fine. But now I want to re-initialize the scene from reading data from a different file.

How do I reset the scene?

Should I just destroy the whole canvas3D and universe objects?

flag

71% accept rate
1  
can't you detach and attach scene graphs? destroying the whole canvas sounds extreme. but im not sure so I am hesitant to claim its an answer – Mikeb Nov 4 at 22:21
I can I think but I'm not sure of the correct way to do it. – Dan Howard Nov 4 at 22:46

1 Answer

vote up 0 vote down

Thanks Mikeb, you put me on the right track.

I figured it out. You need to detach the branchgroup.

Like this:

if (sceneBG != null) {
   sceneBG.detach();
}
sceneBG = new BranchGroup();
sceneBG.setCapability(BranchGroup.ALLOW_DETACH);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.