GithubHelp home page GithubHelp logo

Comments (3)

zadvorsky avatar zadvorsky commented on June 26, 2024 1

Yes, all three-bas materials should work with InstancedBufferGeometry (or any other buffer geometry). As you can see in the source, InstancedPrefabBufferGeometry is a thin wrapper that only copies the api from my other geometries.

from three.bas.

zadvorsky avatar zadvorsky commented on June 26, 2024

Asking questions here is fine, at least for now.

When I first created this extension, THREE.js instanced geometries didn't exist (or I didn't know about them). Instanced geometries rely on a WebGL extension that changes how vertex attributes are used. This extension is fairly widely supported, but may be missing on some devices / browsers.

With instanced geometries, the default geometry attributes (position, normal, uv) are stored once (this defines the instance). Additional custom attributes (like a position / rotation / scale offset) are then stored once per instance.

With the prefab geometry, the default geometry attributes are simply duplicated, and custom attributes are stored once per vertex.

Instanced geometries are substantially more memory efficient, but you lose some flexibility; you can't have per-vertex variations for custom attributes, or per-instance variations for default attributes.

I recently added InstancedPrefabBufferGeometry, which which has a similar API as PrefabBufferGeometry, but uses the instanced geometry under the hood. See this example.

from three.bas.

juliekoubova avatar juliekoubova commented on June 26, 2024

Thank you for the detailed explanation! 😄

Is it okay and supported to use the standard InstancedBufferGeometry with three-bas materials? I'm building several buffers in a loop and it is just seems easier to build them directly rather than going thru InstancedPrefabBufferGeometry.setPrefabData...

And thanks for creating this project. It makes writing shaders so much easier and more organized, especially for a 3D graphics noob like me 🤣

from three.bas.

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.