Popularity
2.0
Declining
Activity
0.0
Stable
81
12
4

Programming language: JavaScript

react-threejs alternatives and similar libraries

Based on the "Framework bindings / integrations" category.
Alternatively, view react-threejs alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-threejs or a related project?

Add another 'Framework bindings / integrations' Library

README

react-threejs

WIP: Simplest bindings between React & Three.js

http://fritx.github.io/react-threejs/example/

See also: vue-threejs

import React, { Component } from 'react'
import { Renderer, Camera, Scene } from 'react-threejs'
render () {
  return (<Renderer size={rendererSize}>
    <Camera position={{ z: 5 }} />
    <Scene>
      <MyCube color={0x00ff00} rotation={rotation}>
        <MyCube color={0xff0000} position={{ y: 2 }} />
        <MyCube color={0x0000ff} position={{ z: 3 }} />
      </MyCube>
    </Scene>
  </Renderer>)
}
// setting FirstPersonControls, PositionalAudio & more
render () {
  return (<Renderer size={rendererSize}>
    <Scene>
      <FirstPersonControls>
        <AudioListener />
        <Camera />
      </FirstPersonControls>
      <Mesh rotation={rotation} geometry={geometry} material={material}>
        <PositionalAudio url="Project_Utopia.ogg" />
      </Mesh>
    </Scene>
  </Renderer>)
}