Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/builder/deg_builder_relations.cc
| Show First 20 Lines • Show All 2,964 Lines • ▼ Show 20 Lines | if (built_map_.checkIsBuiltAndTag(sound)) { | ||||
| return; | return; | ||||
| } | } | ||||
| const BuilderStack::ScopedEntry stack_entry = stack_.trace(sound->id); | const BuilderStack::ScopedEntry stack_entry = stack_.trace(sound->id); | ||||
| build_idproperties(sound->id.properties); | build_idproperties(sound->id.properties); | ||||
| build_animdata(&sound->id); | build_animdata(&sound->id); | ||||
| build_parameters(&sound->id); | build_parameters(&sound->id); | ||||
| const ComponentKey parameters_key(&sound->id, NodeType::PARAMETERS); | |||||
| const ComponentKey audio_key(&sound->id, NodeType::AUDIO); | |||||
| add_relation(parameters_key, audio_key, "Parameters -> Audio"); | |||||
| } | } | ||||
| void DepsgraphRelationBuilder::build_simulation(Simulation *simulation) | void DepsgraphRelationBuilder::build_simulation(Simulation *simulation) | ||||
| { | { | ||||
| if (built_map_.checkIsBuiltAndTag(simulation)) { | if (built_map_.checkIsBuiltAndTag(simulation)) { | ||||
| return; | return; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 326 Lines • Show Last 20 Lines | |||||