Jolt Physics
A multi core friendly Game Physics Engine
Loading...
Searching...
No Matches
BodyType.h
Go to the documentation of this file.
1// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2// SPDX-FileCopyrightText: 2023 Jorrit Rouwe
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
8
10enum class EBodyType : uint8
11{
12 RigidBody,
13 SoftBody,
14};
15
17static constexpr uint cBodyTypeCount = 2;
18
EBodyType
Type of body.
Definition BodyType.h:11
@ RigidBody
Rigid body consisting of a rigid shape.
@ SoftBody
Soft body consisting of a deformable shape.
std::uint8_t uint8
Definition Core.h:447
unsigned int uint
Definition Core.h:446
#define JPH_NAMESPACE_END
Definition Core.h:379
#define JPH_NAMESPACE_BEGIN
Definition Core.h:373