Node setVisible()

Hello,

I have a several obj models.

[java]

rootNode.attachChild(model1);

rootNode.attachChild(model2);

rootNode.attachChild(model3);

[/java]

i want to display each model individually. For example model1 without model2 and model3.

is there something like rootNode.getChild(Index).setVisible(false) ??? :slight_smile:

plz give me some solution if there is any, thanks.

Culling is what you are looking for

https://wiki.jmonkeyengine.org/legacy/doku.php/jme3:scenegraph_for_dummies

u could use cullhint for that

thanks for help