PDA

View Full Version : How to draw items from same scene in different views?



lni
16th July 2013, 10:58
Hi,

I have a scene with 3 different items (each with many child items), say item1, item2, and item3.

I need to draw them in 2 different views

In view1, I want to draw all items with option to show or hide item1 by using item1->setVisible( true/false ).
In view 2, I want to always draw item1, regardless its visibility in view1.

How can I achieve this?


Thanks!

anda_skoa
20th July 2013, 17:49
All views using the same scene show the same scene. if the scene has certain items visible, those will be visible in all views that show the area of where the item is.

If you want different scenes, use different scenes.

Cheers,
_