https://github.com/loginov-rocks/three-sky
Three.js Sky object from official repository example
https://github.com/loginov-rocks/three-sky
sky three
Last synced: about 1 year ago
JSON representation
Three.js Sky object from official repository example
- Host: GitHub
- URL: https://github.com/loginov-rocks/three-sky
- Owner: loginov-rocks
- License: mit
- Created: 2018-02-17T22:49:59.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2021-03-13T12:25:27.000Z (about 5 years ago)
- Last Synced: 2025-03-13T09:57:41.500Z (about 1 year ago)
- Topics: sky, three
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/three-sky
- Size: 130 KB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# three-sky
[](https://www.npmjs.com/package/three-sky)
[](https://github.com/loginov-rocks/three-sky/actions/workflows/ci.yml)
[](https://github.com/loginov-rocks/three-sky/actions/workflows/cd.yml)
Three.js Sky object from official repository [example](https://threejs.org/examples/#webgl_shaders_sky).
All credit goes to [Sky.js](https://github.com/mrdoob/three.js/blob/master/examples/js/objects/Sky.js) contributors.

## Quick Start
### Install
```sh
npm install three three-sky
```
### Use
```js
const Sky = require('three-sky');
const sky = new Sky();
```
Please check example [code](https://github.com/mrdoob/three.js/blob/master/examples/webgl_shaders_sky.html).