WIP: Experiment: Geometry Nodes: support baking individual simulations #112179

Closed
Jacques Lucke wants to merge 51 commits from JacquesLucke/blender:simulation-bake-individual into main

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

View File

@ -765,16 +765,11 @@ static void timeline_cache_draw_simulation_nodes(
}
bool has_bake = false;
bool has_valid = false;
bool has_invalid = false;
for (const SimulationRange &sim_range : simulation_ranges) {
switch (sim_range.status) {
case blender::bke::bake::CacheStatus::Invalid:
has_invalid = true;
break;
case blender::bke::bake::CacheStatus::Valid:
has_valid = true;
break;
case blender::bke::bake::CacheStatus::Baked:
has_bake = true;