Add Support for Geometry Node Cache #92890

Open
Jonas Dichelle wants to merge 14 commits from JonasDichelle/blender-asset-tracer:geonodes_support into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
2 changed files with 9 additions and 2 deletions
Showing only changes of commit 3a6be5c90b - Show all commits

3
.gitignore vendored
View File

@ -11,3 +11,6 @@ __pycache__
/build/
/docs/_build
/.env
JonasDichelle marked this conversation as resolved Outdated

The use of these directories is quite personal, and differs from developer to developer. Please put those into your .git/info/exclude file. That behaves like an extra .gitignore but isn't tracked by Git.

The use of these directories is quite personal, and differs from developer to developer. Please put those into your `.git/info/exclude` file. That behaves like an extra `.gitignore` but isn't tracked by Git.
/.venv

View File

@ -390,5 +390,9 @@ def modifier_nodes(
bake_block_name = block_name + b".bakes[%d]" % bake_idx
yield result.BlockUsage(
modifier, bpath, block_name=bake_block_name, path_full_field=field
modifier,
bpath,
block_name=bake_block_name,
path_full_field=field,
is_sequence=True,
)