From 79d823634a5af2a4563cadd0c875e9e6d9b11af8 Mon Sep 17 00:00:00 2001 From: Lukas Klingsbo Date: Sat, 28 May 2022 09:45:19 +0200 Subject: [PATCH] docs: Fix the broken example links (#1666) Fix the last remaining broken example links. --- doc/flame/collision_detection.md | 8 ++++---- doc/flame/inputs/other-inputs.md | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/doc/flame/collision_detection.md b/doc/flame/collision_detection.md index 5ecdfb422eb..028f5fdd083 100644 --- a/doc/flame/collision_detection.md +++ b/doc/flame/collision_detection.md @@ -273,7 +273,7 @@ Since the hitboxes now are `Component`s you add them to your component with `add ## Examples -- https://examples.flame-engine.org/#/Collision%20Detection_Circles -- https://examples.flame-engine.org/#/Collision%20Detection_Multiple%20shapes -- https://examples.flame-engine.org/#/Collision%20Detection_Shapes%20without%20components -- https://github.com/flame-engine/flame/tree/main/examples/lib/stories/collision_detection + - https://examples.flame-engine.org/#/Collision%20Detection_Collidable%20AnimationComponent + - https://examples.flame-engine.org/#/Collision%20Detection_Circles + - https://examples.flame-engine.org/#/Collision%20Detection_Multiple%20shapes + - https://github.com/flame-engine/flame/tree/main/examples/lib/stories/collision_detection diff --git a/doc/flame/inputs/other-inputs.md b/doc/flame/inputs/other-inputs.md index fff105cb4ab..53b8d81c16f 100644 --- a/doc/flame/inputs/other-inputs.md +++ b/doc/flame/inputs/other-inputs.md @@ -100,7 +100,11 @@ If you want to create buttons to go with your joystick, check out A full examples of how to use it can be found [here](https://github.com/flame-engine/flame/blob/main/examples/lib/stories/input/joystick_example.dart). -And it can be seen running [here](https://examples.flame-engine.org/#/Controls_Joystick). +And it can be seen running [here](https://examples.flame-engine.org/#/Input_Joystick). + +There is also a more advanced example +[here](https://github.com/flame-engine/flame/blob/main/examples/lib/stories/input/joystick_advanced_example.dart) +which is running [here](https://examples.flame-engine.org/#/Input_Joystick%20Advanced). ## HudButtonComponent