This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/depsgraph/intern/depsgraph_physics.h

24 lines
576 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2019 Blender Foundation. All rights reserved. */
/** \file
* \ingroup depsgraph
*/
#pragma once
struct Collection;
struct ListBase;
namespace blender::deg {
struct Depsgraph;
ListBase *build_effector_relations(Depsgraph *graph, Collection *collection);
ListBase *build_collision_relations(Depsgraph *graph,
Collection *collection,
unsigned int modifier_type);
void clear_physics_relations(Depsgraph *graph);
} // namespace blender::deg