Skip to main content
1-Visitor
December 24, 2019
Question

Hide 2D overlapping elements during desing time?

  • December 24, 2019
  • 2 replies
  • 3873 views

Hi all,

How to hide existing 2D  elements design during desing time if they overlap with other 2D elements that needs to be created? Like infocards that are getting overlapped sometimes? It's not possible to create other 2D elements if existing one fills the space on the screen

2 replies

5-Regular Member
December 24, 2019

@anickolsky_2022  Just to inform, I am owning your PTC Case related to this post and have reached out internally to see if there are any suggestions. Also, would be good to know if anyone else had similar challenges/experience during Designing and have any feedback/suggestions.

 

-Durgesh

1-Visitor
December 26, 2019

we are also facing the same issue while creating UI in vuforia studio (2D Canvas). I want to elaborate this question more from my side. while creating UI, suppose I  inserted popup widget there is hide popup option in properties.

like this way. Is there any another option to hide other widgets in canvas (not in preview). 

1-Visitor
December 26, 2019

pdf of hide popup property is attached here for reference

14-Alexandrite
January 2, 2020

Hello  anickolsky

 

for this case I often use a workaround via CSS. If I need to hide a specific widget for design time I add a class to the widget which is defined for example by:

 

.hide {
 position: fixed;
 bottom: -10000px;
 right: -10000px;
}

 

The disadvantage is that you must remember which widgets have this class, because you must remove it before preview/publish project.

 

Regards

 

Tomas