npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

babylonjs-blender-loader

v1.0.3

Published

Load Blender `.blend` files as BabylonJS objects through a webpack loader.

Downloads

7

Readme

Load Blender .blend files as BabylonJS objects through a webpack loader.

Unfortunately, textures are not supported yet. The BabylonJS API makes it really hard to load things yet because it requires textures to be loaded through its own XHR mechanism and its own loader stuff. It doesn’t even really have a proper plain JavaScript object loader, so we have to feed it stringified JSON as a data: URI. To try to reduce the amount of necessary refactoring later if texture loading is ever supported properly, this loader loads an object with an API that wraps SceneLoader.

Usage

The BabylonJS SceneLoader offers ImportMesh() to load a single mesh to an existing scene, Load() to generate a new scene from the entire file, and Append() to mix an entire file to an existing scene. The scene provided by this loader will have equivalent methods except that you must pass it SceneLoader and omit the rootUrl and sceneFilename arguments. Thus, it has the following API:

  • loadedBlend.dataUri: the raw data as a data: URI. If you are working around the lack of texture support, you may need this, but this should be considered deprecated because of the possibility that textures may eventually be handled correctly (through webpack image loaders).

  • loadedBlend.ImportMesh(sceneLoader, meshesNames, scene, onsuccess, progressCallBack, onerror)

  • loadedBlend.Load(sceneLoader, engine, onsuccess, progressCallBack, onerror)

  • loadedBlend.Append(sceneLoader, scene, onsuccess, progressCallBack, onerror)

An example:

var engine = new BABYLON.Engine(document.getElementById('render-canvas'), true);
var scene = new BABYLON.Scene(engine);
require('./scene.blend').Append(BABYLON.SceneLoader, scene, loadedScene => {/*onsuccess*/}, x => {/*onprogress*/}, ex => {/*onerror*/});
engine.runRenderLoop(() => scene.render());

Prerequisites

You must have blender in your PATH and have the BabylonJS Blender Exporter plugin installed (but not necessarily activated) in Blender. See more detailed instructions in the documentation for babylonjs-blender.

Installation

$ npm install --save babylonjs-blender-loader

Configuration

You are free to write require('babylonjs-blender-loader!../models/person.blend'), but that is clunky and you probably want to use this loader for all .blend files. To do so, configure webpack to use this loader as the default for .blend files:

({
    module: {
        loaders: [
            { test: /\.blend$/, loader: 'babylonjs-blender-loader', },
        ],
    },
})