MotionType.h 441 B

1234567891011121314151617
  1. // Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
  2. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  3. // SPDX-License-Identifier: MIT
  4. #pragma once
  5. JPH_NAMESPACE_BEGIN
  6. /// Motion type of a physics body
  7. enum class EMotionType : uint8
  8. {
  9. Static, ///< Non movable
  10. Kinematic, ///< Movable using velocities only, does not respond to forces
  11. Dynamic, ///< Responds to forces as a normal physics object
  12. };
  13. JPH_NAMESPACE_END