viromedia/viro

How to hide/remove the little green boxes on center of each eye on VR

vasilycrespo opened this issue · 0 comments

  1. Development OS: Mac
  2. Device OS & Version: Android 10
  3. Version: ViroReact last. React Native 0.66.1
  4. Device(s): Samsung S9+

Good day, I was wondering if someone has been able to hide/remove the little green boxes on the center of each eye container. I checked on the documentation trying to find some properties related to the components I am using, but could not find anything.

By the way i am using these components

<ViroVRSceneNavigator
  initialScene={{scene: VrImage}}
  viroAppProps={{uri, type}}
  vrModeEnabled={vrMode}
/>

class VrImage extends Component {
  constructor() {
    super();
    this.state = {};
  }
  render() {
    const {uri, type} = this.props.sceneNavigator.viroAppProps;
    return (
      <ViroScene>
        <Viro360Image source={{uri}} />
      </ViroScene>
    );
  }
}

Here's an image of what I mean.

image
Captura de pantalla 2022-01-18 a las 17 55 51

Also is there a way to remove the gray line, as on some devices it is displaying miss-aligned? Thanks a lot for any assistance.