Skip to main content
1-Visitor
January 17, 2020
Solved

3D image visible and hide

  • January 17, 2020
  • 1 reply
  • 1096 views

Click the button once to visible the 3D image and click again to hide.
How can I implement it with Vufortia?

Best answer by RolandRaytchev

Hi @ccss1 ,

 

with javaScript using a global variable this is easy to implement.

The variable should save the status of the current display. 

Another option is to check simple the visibiltiy of the 3D Image

Example it could be something like :

$scope.MybuttonClickEvent = function()
{
if ($scope.view.wdg['3DImage-1']['visible'] == true)
$scope.view.wdg['3DImage-1']['visible'] = false;
else
$scope.view.wdg['3DImage-1']['visible'] = true;

}

 

1 reply

21-Topaz I
January 17, 2020

Hi @ccss1 ,

 

with javaScript using a global variable this is easy to implement.

The variable should save the status of the current display. 

Another option is to check simple the visibiltiy of the 3D Image

Example it could be something like :

$scope.MybuttonClickEvent = function()
{
if ($scope.view.wdg['3DImage-1']['visible'] == true)
$scope.view.wdg['3DImage-1']['visible'] = false;
else
$scope.view.wdg['3DImage-1']['visible'] = true;

}