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

blend4web

v18.5.0

Published

Blend4Web is a framework for creating interactive web-based 3D, VR and AR content using webgl. The framework can be used for showcasing products, e-learning, game development, advertising and web design.

Downloads

83

Readme

blend4web

An official repository for Blend4Web WebGL engine (free version).

Blend4Web is a tool for creating interactive, web-based 3D content. The framework can be used for showcasing products, e-learning, game development, advertising and web design.

  • It works right in the web browser without installing any plug-ins (thanks to WebGL);
  • Not only does it render 3D graphics but it also integrates realistic physics and spatial audio;
  • It is extremely simple to use because it is based on Blender in which 3D scenes can be made and then directly exported, even as a standalone web page;
  • It is available as a fully functional open source version or as under a paid commercial license.
  • It does not depend on any non-free components or cloud services.

Getting support

We are always glad to answer your questions on the Blend4Web forums. We also offer assistance for Blend4Web PRO owners with any technical issues which may arise (more here).

Installing

npm install blend4web

Usage

Using built version (ES5)

  1. Include b4w.min.js, b4w.simple.min.js or b4w.whitespace.min.js into your html-file:

    <script src="node_modules/blend4web/dist/b4w.min.js"></script>
  2. Use b4w global variable in your script:

    b4w.register("simple_app_es5", function(exports, require) {
        // import modules used by the app
    
        var m_app       = b4w.require("app");
        var m_cfg       = b4w.require("config");
        var m_data      = b4w.require("data");
        var m_preloader = b4w.require("preloader");
        var m_ver       = b4w.require("version");
        var m_anim      = b4w.require("animation");
        ...
    }
    
    b4w.require("simple_app_es5").init();

Using ES6 module

  1. Include your javascript ES6 module into html:

    <script type="module" src="simple_app.js"></script>
  2. Use b4w variable from blend4web module:

    import b4w from "blend4web";
    var m_app       = b4w.app;
    var m_cfg       = b4w.config;
    var m_data      = b4w.data;
    var m_preloader = b4w.preloader;
    var m_ver       = b4w.version;
    var m_anim      = b4w.animation;
    var m_cont      = b4w.container;
    var m_mouse     = b4w.mouse;
    var m_scenes    = b4w.scenes;
    ...
  3. Use builders like webpack, rollup to run your application.

See examples in projects directory.

Blender Addon

You can find a Blender addon in dist/addons directory.

License

Open source license

If you are creating an open source application under a license compatible with the GNU GPL license v3, you may use Blend4Web under the terms of the GPLv3. To get away from GPLv3 restrictions, you should purchase commercial license.

You may not redistribute, sublicense or sell this program without written permission of Triumph LLC, the author of Blend4Web software.

This software is provided without warranty.

Commercial license

If you want to use Blend4Web to develop commercial sites, themes, projects, and applications, the Commercial license is the appropriate license. With this option, your source code is kept proprietary. Purchase a Blend4Web Commercial License at Blend4Web Online Store.

Read more about Blend4Web's Commercial license.

More info

Visit Blend4Web website for more information and documentation.

Contact us

  • Email: [email protected]
  • Web: https://www.blend4web.com/
  • Facebook: https://www.facebook.com/blend4web
  • Twitter: https://twitter.com/blend4web
  • Google+: https://plus.google.com/+blend4web