Skip to content

Instantly share code, notes, and snippets.

@adamTrz
Last active February 24, 2018 13:55
Show Gist options
  • Select an option

  • Save adamTrz/adaa115da2c1982fcc9c556442e0a962 to your computer and use it in GitHub Desktop.

Select an option

Save adamTrz/adaa115da2c1982fcc9c556442e0a962 to your computer and use it in GitHub Desktop.
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