An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# 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/actions/workflows/ci.yml/badge.svg)](https://github.com/loginov-rocks/three-sky/actions/workflows/ci.yml)
[![CD](https://github.com/loginov-rocks/three-sky/actions/workflows/cd.yml/badge.svg)](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.

![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).