VrButton

The VrButton component in React 360 will help to implement a simple, button-style, onClick behavior for the objects and Text buttons that will be added to the game. A VrButton is not visible in the view by default and will only act as a wrapper to capture events, but it can be styled in the same ways as a View component:

<VrButton onClick={this.clickHandler}>        <View>            <Text>Click me to make something happen!</Text>        </View> </VrButton>

This component is a helper for managing click-type interactions from the user across different input devices. Input events that will trigger the click event include a space button press on the keyboard, a left-click on the mouse, and a touch on the screen.

Get Full-Stack React Projects now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.