Code Monkey home page Code Monkey logo

Comments (1)

richardolsson avatar richardolsson commented on September 3, 2024

I'll answer this question, but please don't use the issue tracker as a support channel. Questions like these can be asked in the Away3D forum instead, at away3d.com/forum.

When you load something, that something is called a "resource" (i.e. a master file and any other file dependencies.) One resource may contain many assets. For instance, an OBJ resource (which is two files, file.obj and file.mtl) can contain for example four assets, mesh1, mesh2, material1, material2.

The AssetLibrary doesn't care about resources, it cares about assets. Actually, you shouldn't be caring about resources either, because where the assets came from is rarely (if ever) relevant in your application logic.

So if you load a resource with AssetLibrary, the way to then retrieve a single asset from that resource is using that asset's name. The name is taken from within the file, which probably means that it was chosen by your artist.

If you really want to "tag" all the assets in a resource as you load them, load them into a separate namespace using the AssetLibrary.load() fourth parameter. You can then retrieve all the assets from that namespace using the AssetLibrary.createIterator() method.

If you need to further discuss this or have any further questions, please start a thread in the forums and refer to this issue with a link.

Cheers!
/R

from away3d-core-fp11.

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.