0

Using google-vr and unity, I would like to display certain objects on one view/screen/eye only. So that object would be visible on one eye and not on the other. Is that possible, and if so, how?

user1840267
  • 408
  • 1
  • 5
  • 18

1 Answers1

1

Using Layers

  • For your object, set its Layer to "Water" (as an example)
  • Select "Main Camera Right"
  • From Culling Mask drop-down, disable "Water" layer (now this camera won't see any objects on that layer)

More info: https://docs.unity3d.com/Manual/Layers.html

mgear
  • 1,333
  • 2
  • 22
  • 39