Managing large quantity of assets and models

I have a very large amount of assets and models available to create scenes. What is the best way to manage them, so that I don’t have to keep importing packages to determine what I have in each package?

I need an asset management tool that will allow me to view all my available assets.

1 Answer

1

You need assets loaded in Unity to browse them easily.

I know of no tool which allows you to inspect the assets easily otherwise.

If you don’t want to load them all into your main project, consider creating a secondary project that you only use as your asset catalogue. Clearly it’s not ideal, but it would work. If you have two monitors or more, you could also consider dedicating one of your monitors to the second projects, running two projects at once. Depending on what information you need, perhaps you could just unzip the packages and build lists of the items (like, make an app that does this, or figure out a way to collect all of the different filenames). I don’t know it’ll work for certain, but I think a .unitypackage is just a zip file that you can open with a zip tool.

You could even write yourself an editor tool that imports your packages one at a time and uses editor functions to generate small thumbnails of your objects which you can then export. Perhaps someone already solved this (or got an idea to do this just now), in that case I’d check the Asset Store for clues.

Unity does allow more than one session at the time, but Unity loads by default the last project you worked on and it does not allow multiples of the same project loaded at any time. You can get around this by going into: Edit - Preferences - General. Check the: "Always Show Project Wizard". Now when you open Unity it will ask which project you want to open, select a different project than the already open one or create a new one.

Hi GameVortex, I tried what you suggested, but Unity closes one project before opening the second, which in essense really opens only one project at a time.

Are you launching the second unity instance from the Start Menu / Dock?

UPDATE: I was able (with the help of some here in Answers) to figure out how to launch my 2nd session of Unity. So, now all that remains is my original question. - How to Manage Large Quantities of Assets and Models. Thanks to all that have commented.