Coder Social home page Coder Social logo

aframe-react's Introduction

aframe-react

Bridging A-Frame with React.

aframe-react is a thin layer on top of A-Frame, which is an entity-component-system-based layer on top of three.js. It serializes objects, passed as props, to strings understandable by A-Frame components:

<Entity geometry={{primitive: 'box', width: 5}}/>
// to:
<Entity geometry="primitive: box; width: 5"/>

See the aframe-react-boilerplate for example usage.

Installation

aframe-react can be installed through npm.

npm install --save aframe-react

aframe-react does not come with the aframe library. We will have to require that alongside aframe-react. Check out the boilerplate to see how to get everything set up with Webpack.

import 'aframe';
import {Entity, Scene} from 'aframe-react';

class ExampleScene extends React.Component {
  render () {
    return (
      <Scene>
        <Entity geometry={{primitive: 'box'}} material="color: red" position={[0, 0, -5]}/>
      </Scene>
    );
  }
}

API

aframe-react ships with a Scene React component and an Entity React component, which are all we really need.

Note the difference between React components and A-Frame components. A-Frame components refers to components of the entity-component-system pattern.

<Scene {...components}/>

The Scene React component is a thin wrapper around <a-scene>. The scene holds <Entity/>s:

<Scene>
  <Entity/>
</Scene>
Event Description
onLoaded onLoaded handler is called once scene has loaded all entities.

<Entity {...components}/>

The Entity React component is a wrapper around <a-entity>. Entity handles serialization of A-Frame components. A-Frame components can then be passed via props either via object or string.

<Entity geometry={{primitive: 'box'}} material='color: red'/>

Events

Event Description
onLoaded onLoaded handler is called when entity is loaded.

<Animation {...attributes}/>

The Animation React component is a thin wrapper around <a-animation>.

<Animation attribute="rotation" dur="10000" repeat="indefinite" to="0 360 360"/>

Events

Event Description
onAnimationEnd onAnimationEnd handler is called when animation ends.
onAnimationStart onAnimationStart handler is called when animation starts.

aframe-react's People

Contributors

fouad avatar mayognaise avatar meta-meta avatar naeramarth7 avatar ngokevin avatar rspace avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.