apoeco / react-vr-walk

Walk around your ReactVr app with WASD!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-vr-walk

Walk around your ReactVr app with WASD!

Example:

import React from 'react';
import {
  AppRegistry,
  Text,
  View,
} from 'react-vr';
import Walk from 'react-vr-walk'

class App extends React.Component {
  render() {
    return(
      <Walk panoSource={asset('chess-world.jpg')}
            speed={1}>
        <View style={{flex: 1, flexDirection: 'row'}}>
          <Text>Hey!</Text>
        </View>
      </Walk>
    )
  }
}
AppRegistry.registerComponent('App', () => App);

About

Walk around your ReactVr app with WASD!

License:MIT License


Languages

Language:JavaScript 100.0%