1// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics) 2// SPDX-FileCopyrightText: 2021 Jorrit Rouwe 3// SPDX-License-Identifier: MIT 4 5#pragma once 6 7JPH_NAMESPACE_BEGIN 8 9/// Enum used by AddBody to determine if the body needs to be initially active 10enum class EActivation 11{ 12 Activate, ///< Activate the body, making it part of the simulation 13 DontActivate ///< Leave activation state as it is (will not deactivate an active body) 14}; 15 16JPH_NAMESPACE_END 17 18