cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

Adding labels or images at the start of a sequence step Voforia Studio

aoleary
4-Participant

Adding labels or images at the start of a sequence step Voforia Studio

I would like to add a 3D label or 3D image of an arrow that pops up right before a step of a sequence plays. My model has a sequence that shows assembly steps from different angles of the model and you can't see all of the steps from one view. I want to guide the user to rotate the model or walk around the model to a specific view and then press play to see the sequence from that view. Is this possible?  Also would it be possible to then hide the arrow once the sequence plays and then have another arrow appear at the start of a new step? Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
tmccombie
21-Topaz I
(To:aoleary)

Yes this is definitely possible. You can achieve this a few ways. I did the following to get it to work:

 

  1. Create a button and bind the Click event to the 'Play' Service of your model
  2. Create 2  new Application Parameters within Studio.
    • I called mine 'currentStep' and 'hide'. 
  3. Bind the Current Step property of your model to your new app param currentStep as well as set app param hide to 0
  4. Create the labels or images that you want to use for your experience and ensure the 'visible' property is not selected.
    • I created a 3D Label and a 3D Image for this
  5. Add the below code to your home.js file:
    • $scope.showNav = function(){
        
          switch($scope.app.params.currentStep){
              case '1':

              $scope.setWidgetProp('3DLabel-1','visible', true);
              break;

              case '2':

              $scope.setWidgetProp('3DImage-1','visible', true);
              break;
              
            default:
              
              console.log('in show Nav');
              
          }

        $scope.app.params.hide++;
      }


      $scope.hideNav = function(){
        
          switch($scope.app.params.hide){
              
              case 1:

              $scope.setWidgetProp('3DLabel-1','visible', false);
              break;

              case 2:

              $scope.setWidgetProp('3DImage-1','visible', false);
              break;
              
            default:
              console.log('in hide Nav');
          }

      }

  6. Call showNav() on the Play Stopped event of the model and hideNav() on the Play Started event

 

 

 

 

 

View solution in original post

2 REPLIES 2
tmccombie
21-Topaz I
(To:aoleary)

Yes this is definitely possible. You can achieve this a few ways. I did the following to get it to work:

 

  1. Create a button and bind the Click event to the 'Play' Service of your model
  2. Create 2  new Application Parameters within Studio.
    • I called mine 'currentStep' and 'hide'. 
  3. Bind the Current Step property of your model to your new app param currentStep as well as set app param hide to 0
  4. Create the labels or images that you want to use for your experience and ensure the 'visible' property is not selected.
    • I created a 3D Label and a 3D Image for this
  5. Add the below code to your home.js file:
    • $scope.showNav = function(){
        
          switch($scope.app.params.currentStep){
              case '1':

              $scope.setWidgetProp('3DLabel-1','visible', true);
              break;

              case '2':

              $scope.setWidgetProp('3DImage-1','visible', true);
              break;
              
            default:
              
              console.log('in show Nav');
              
          }

        $scope.app.params.hide++;
      }


      $scope.hideNav = function(){
        
          switch($scope.app.params.hide){
              
              case 1:

              $scope.setWidgetProp('3DLabel-1','visible', false);
              break;

              case 2:

              $scope.setWidgetProp('3DImage-1','visible', false);
              break;
              
            default:
              console.log('in hide Nav');
          }

      }

  6. Call showNav() on the Play Stopped event of the model and hideNav() on the Play Started event

 

 

 

 

 

aoleary
4-Participant
(To:tmccombie)

Thank you very much. It's works great.

Top Tags