behaviour-tree-test/engine/thirdparty/jolt_physics/Jolt/Physics/EActivation.h
Sara c3f9669b10 Add 'engine/' from commit 'a8e37fc010'
git-subtree-dir: engine
git-subtree-mainline: b74841629e
git-subtree-split: a8e37fc010
2026-03-13 11:22:19 +01:00

16 lines
464 B
C++

// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
// SPDX-License-Identifier: MIT
#pragma once
JPH_NAMESPACE_BEGIN
/// Enum used by AddBody to determine if the body needs to be initially active
enum class EActivation
{
Activate, ///< Activate the body, making it part of the simulation
DontActivate ///< Leave activation state as it is (will not deactivate an active body)
};
JPH_NAMESPACE_END