HeavyOnLightTest.h 468 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. #include <Tests/Test.h>
  6. // This test spawns a number of heavy boxes (with increasing weight) on smaller boxes to see how the simulation handles this
  7. class HeavyOnLightTest : public Test
  8. {
  9. public:
  10. JPH_DECLARE_RTTI_VIRTUAL(JPH_NO_EXPORT, HeavyOnLightTest)
  11. // See: Test
  12. virtual void Initialize() override;
  13. };