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

5
.gitignore vendored
View File

@ -10,4 +10,7 @@ __pycache__
/dist/
/build/
/docs/_build
/docs/_build
/.env
/.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,
)