# three-sky

[![npm](https://img.shields.io/npm/v/three-sky)](https://www.npmjs.com/package/three-sky)
[![CI](https://github.com/loginov-rocks/three-sky/workflows/CI/badge.svg)](https://github.com/loginov-rocks/three-sky/actions)

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.

![Teaser](https://raw.githubusercontent.com/loginov-rocks/three-sky/main/misc/teaser.png)

## 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).
