Function Viewer.menuVisible

This would be the correct way to implement in the body-end.html the Viewer.menuVisible function that is mentioned in the Shapespark API?

Is there a way to start a scene with the view list and menus all hidden on start?

<script>
  var viewer = WALK.getViewer();
  Viewer.menuVisible();
</script>

I am not a developer, I just know a little about html.

Thank you very much for the help

This should work:

<script>
  var viewer = WALK.getViewer();
  viewer.menuVisible = false;
</script>
1 Like