-3

I am building a 360 panoramic virual tour using Unity 3D and i need a simple solution to build a backend with unity to place hotspots (points in panoramic picture that lead to another one ) as user interface.

Thnx

Meher
  • 35
  • 5

1 Answers1

0
  • Make Main Camera as the child of Empty GameObject(since you can't directly move main camera position)
  • Attach a script to that GameObject(which is a script to move camera to desired position)
  • You should place a Button(Use a arrow image as a graphic image) and and an onclick event which calls the script attached in parent of main camera to move the position of camera to desired position where the next image has been placed

Thus when you click on that button in virtual tour there will be a change in main camera position to a new Gameobject where your next image has been placed.

Deekshith Hegde
  • 1,318
  • 2
  • 15
  • 27