Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/manu4kym/3j-testbed

Playground
https://github.com/manu4kym/3j-testbed

Last synced: 7 days ago
JSON representation

Playground

Awesome Lists containing this project

README

        

# Play ground

## starter

```javascript
import WebGL from 'three/addons/capabilities/WebGL.js';

if ( WebGL.isWebGL2Available() ) {

window.alert('Continue');

} else {

const warning = WebGL.getWebGL2ErrorMessage();
document.getElementById( 'container' ).appendChild( warning );

}

```