Giter Site home page Giter Site logo

Any way to import a GLTF? about whs.js HOT 9 OPEN

zardilior avatar zardilior commented on May 25, 2024
Any way to import a GLTF?

from whs.js.

Comments (9)

sasha240100 avatar sasha240100 commented on May 25, 2024 1

@zardilior There is a geometry.parser property in options object of Importer class that handles loader input and converts to the right output.

You can find an example here: http://whs.io/module-components_meshes.Importer.html

I guess that's what he was asking about, @FeaturedSpace

from whs.js.

noahcoetsee avatar noahcoetsee commented on May 25, 2024

I wish I could answer this in a fuller extent, but basically, look into using the three.js tool. It is still working and should be specifiable through WhitestormJS

You should be able to integrate it into WHJS by specifying that loader (after importing it into your project) with this code:

geometry: {
    path: '', // String. Url to model file.
    physics: '', // String. Url of physics model. (opional)
    loader: JSONLoader // Three.js loader. CHANGE THIS TO GLTFLoader
  }

Obviously, make sure you change the code and import the GLTFLoader into your project!

And, if you have any further questions, I would suggest checking out this page: https://whsjs.readme.io/docs/model

Edit: Extended Formatting

from whs.js.

zardilior avatar zardilior commented on May 25, 2024

Problem with gltf in the parsing step
The three.js json format has already being deprecated
That format and the official blender exporter project have been removed.
Gltf is now the better approach according to three.js docs.

from whs.js.

noahcoetsee avatar noahcoetsee commented on May 25, 2024

I'm not sure I understand your meaning. The three.js JSON format shouldn't affect the importing of a GLTF...

Did you see where I said "CHANGE THIS TO GLTFLoader"?

Sorry if I'm misunderstanding?

from whs.js.

noahcoetsee avatar noahcoetsee commented on May 25, 2024

Yeah I mean, what I mentioned was specifically was the GLTF parser that WHS is already supporting..

from whs.js.

zardilior avatar zardilior commented on May 25, 2024

@FeaturedSpace ok so I would import the GLTFLoader from the three.js website? Or is there one already made integrated within WHS, which isn't documented yet?

from whs.js.

noahcoetsee avatar noahcoetsee commented on May 25, 2024

Import both. Use the WHS one.

Like this:



geometry: {
    path: '', // String. Url to model file.
    physics: '', // String. Url of physics model. (opional)
    loader: new Importer({
      loader: new THREE.GLTFLoader(),

      parser(geometry, material) { // data from loader
        return new THREE.Mesh(geometry, material); // should return your .native (mesh in this case)
      },

      position: [0, 100, 0]
    }).addTo(app);
  }

from whs.js.

zardilior avatar zardilior commented on May 25, 2024

How to add to docs? I offer myself to do so, now that I have the code. I think its very important @FeaturedSpace

from whs.js.

noahcoetsee avatar noahcoetsee commented on May 25, 2024

That's a question for @sasha240100 !

from whs.js.

Related Issues (20)

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.