JSPM

three-fbx-loader

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 357
  • Score
    100M100P100Q91778F
  • License MIT

@ckddbs's three.js fbx-loader as a node module

Package Exports

  • three-fbx-loader

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (three-fbx-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

three-fbx-loader

Kyle-Larson and Takahiro's THREE.FBXLoader repackaged as a node module

install

npm i --save three-fbx-loader

usage

var THREE = require('three');
var FBXLoader = require('three-fbx-loader');

var loader = new FBXLoader();

var scene = new THREE.Scene();

loader.load('./path/to/model.fbx', function (object3d) {
  scene.add(object3d);
});