3D Photo Feature - Disable Tutorial

Hello,

I’m struggling to disable the 3D Photo Feature Tutorial!

I’m working on a project where users can scan the map of a city to see its touristic spots. Once they click on the object, the 3D Photo feature is enabled.

What I’m trying to do is hiding the 3D Photo Feature tutorial in the begging of the experience but still play it (if possible) after the player clicks on an object.

I tried to use the symbol.hide() but it didn’t work, the tutorial keeps showing up.

Thanks in advance.

I had to do this as well.

  1. Go in to the 3D Photo Feature symbol.
  2. in buttonCode lines 55 -59 you need to comment them out.
  3. Next you need to add export to line 47. It should look like this…
    export function help_selected(){

You can now call the help from out side the symbol as needed.

Steve

3 Likes

Thanks a lot, Steve!

1 Like

Your welcome!
:smile:

Do you know where to turn it off in a 2D photo feature? I can’t find it for the life of me.

…and then instantly it clicks for me…for anyone else looking for 2D photo feature instructions control (turn off at start) comment out 46 - 48

The section below…
///symbol.nodes.root.one(“show”, () => {
///help_selected();
///});

1 Like