From d56a800d44316366d649f6e7b9484cf12bc3d070 Mon Sep 17 00:00:00 2001 From: Christoph Deil Date: Mon, 17 Feb 2025 12:17:35 +0100 Subject: [PATCH] Fix name of platformer engine classes in docs --- arcade/physics_engines.py | 2 +- doc/_archive/get_started.rst | 4 ++-- doc/get_started/arcade_book.rst | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arcade/physics_engines.py b/arcade/physics_engines.py index 9b7aa5c4ff..bedce69dd4 100644 --- a/arcade/physics_engines.py +++ b/arcade/physics_engines.py @@ -299,7 +299,7 @@ class PhysicsEngineSimple: * You don't need anything else For side-scrolling games focused on jumping puzzles, you may want - the :py:class:`PlatformerPhysicsEngine` instead. Experienced users + the :py:class:`PhysicsEnginePlatformer` instead. Experienced users may want to try the :py:class:`~arcade.pymunk_physics_engine.PymunkPhysicsEngine`. diff --git a/doc/_archive/get_started.rst b/doc/_archive/get_started.rst index 7cb06d27c9..ef2f1a61bf 100644 --- a/doc/_archive/get_started.rst +++ b/doc/_archive/get_started.rst @@ -105,10 +105,10 @@ Arcade Skill Tree * Physics Engines - * SimplePhysicsEngine - Platformer tutorial :ref:`platformer_part_three`, + * PhysicsEngineSimple - Platformer tutorial :ref:`platformer_part_three`, Learn Arcade Book `Simple Physics Engine `_, Example :ref:`sprite_move_walls` - * PlatformerPhysicsEngine - From the platformer tutorial: :ref:`platformer_part_four`, + * PhysicsEnginePlatformer - From the platformer tutorial: :ref:`platformer_part_four`, * :ref:`sprite_moving_platforms` * Ladders - Platformer tutorial :ref:`platformer_part_ten` diff --git a/doc/get_started/arcade_book.rst b/doc/get_started/arcade_book.rst index 48ebb28d48..30163083cb 100644 --- a/doc/get_started/arcade_book.rst +++ b/doc/get_started/arcade_book.rst @@ -106,10 +106,10 @@ Arcade Skill Tree * Physics Engines - * SimplePhysicsEngine - Platformer tutorial :ref:`platformer_part_three`, + * PhysicsEngineSimple - Platformer tutorial :ref:`platformer_part_three`, Learn Arcade Book `Simple Physics Engine `_, Example :ref:`sprite_move_walls` - * PlatformerPhysicsEngine - From the platformer tutorial: :ref:`platformer_part_four`, + * PhysicsEnginePlatformer - From the platformer tutorial: :ref:`platformer_part_four`, * :ref:`sprite_moving_platforms` * Ladders - Platformer tutorial :ref:`platformer_part_ten`