This is a note from our game dev journey.
If you’re building a library of reusable materials, node groups, or geometry nodes setups in Blender, the new Asset Browser (introduced in Blender 3.0) is a game-changer. It lets you mark any data block (like a node group or material) as an asset and organize it into categories—making your creative workflow smoother and faster.
But how do you set up your own custom asset categories (also known as “catalogs”)? Let’s walk through the process, from catalogue definition to assigning your own geometry nodes asset to a custom folder.

What Is an Asset Catalog?
Blender uses a text file named blender_assets.cats.txt to define asset catalogs—that is, categories or folders in which your assets will appear when you browse your asset library (or, for example when you try to locate a modifier). This file lives in the same folder as your .blend files and tells Blender how to organize the assets you mark.
Setting Up Your Asset Catalog
- Create a Catalog Definition File In the folder where you plan to store your asset
.blendfiles, create a file calledblender_assets.cats.txt. It should start with:VERSION 1
Then, add lines for each catalog in the format:UUID:category/path:Catalog NameUUIDis a unique identifier (you can use any valid UUID, or let Blender generate one for you).category/pathis the folder structure you want in the Asset Browser.Catalog Nameis the label you’ll see in Blender.
VERSION 1 0806d646-be44-43a9-a22a-d475210f4097:MyAssets/Modifiers:Modifiers - Save Your
.blendFiles in the Same Folder Any.blendfile containing assets you want to organize should be placed in this folder.
Marking Your Geometry Nodes (or Other) Assets

- Open Your Blender File. Load the
.blendfile with the geometry nodes modifier or group you want to turn into an asset. - Switch the outline to BlenderFile mode (click the 2nd icon in the toolbar).
- Mark as Asset
- Select the relevant datablock (e.g., a geometry nodes group) in the editor.
- Use the menu: Asset → Mark as Asset.
- Assign to a Catalog
- Open the Asset Browser and view your current file’s assets.
- In the right sidebar (“Catalog” panel), you’ll see your custom catalogs.
- Drag your new asset into your desired catalog (e.g., “MyAssets/Modifiers”), or right-click and assign it.
- Save the File
- Make sure to save your
.blendfile after marking and categorizing your asset.
- Make sure to save your

Making Your Asset Library Available
- Set Up Asset Libraries in Blender Preferences
- Go to Edit → Preferences → File Paths → Asset Libraries.
- Click Add, then select the folder containing your
.blendfiles and theblender_assets.cats.txtfile.
- Browse Your Assets Anywhere
- In any Blender file, open the Asset Browser.
- Switch to your asset library. Your organized assets, in their custom categories, will be ready to drag, drop, and reuse.

Troubleshooting Tips
- Make sure every
.blendfile you want to use as an asset is saved in the same folder as your catalog file. - You can add, rename, or reorganize categories by editing the
blender_assets.cats.txtfile, but you’ll need to reassign assets if you move them between catalogs. - The catalog assignment is saved in each
.blendfile’s asset data and references the catalog by UUID.

Wrap-Up
Blender’s asset catalog system lets you organize your node groups, materials, and more into handy categories for future projects. Whether you’re sharing assets with a team or building your own creative library, custom catalogs make asset management easy and efficient.
Happy blending!