flintvr-react icon indicating copy to clipboard operation
flintvr-react copied to clipboard

This is a small shim library to wrap FlintVR with React.js bindings

flint-react

This is a small shim library to wrap FlintVR with React.js bindings.

How to Use

Please see the example project. Basically this is just regular react but you can use 'scene' and 'model' components from FlintVR.

import { render } from 'flint-react';

global.vrmain = function(env) {
  render(
    <scene>
      <model file='box.fbx' position={Vector3(0, 0, -10)} />
    </scene>
  );
}