Last active
February 24, 2018 13:55
-
-
Save adamTrz/adaa115da2c1982fcc9c556442e0a962 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as React from 'react' | |
| import { Sphere, PointLight, View, asset } from 'react-vr' | |
| class Sun extends React.Component { | |
| render() { | |
| return ( | |
| <View> | |
| <Sphere | |
| radius={5} | |
| widthSegments={30} | |
| heightSegments={30} | |
| texture={asset('sun.jpg')} | |
| /> | |
| <PointLight intensity={3} /> | |
| </View> | |
| ) | |
| } | |
| } | |
| export default Sun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment