diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-16 10:41:46 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-16 10:41:46 +0200 |
| commit | e551d5f523fa562befcd062b16cac2a518a5de2a (patch) | |
| tree | 5fb4c3ae2066b3a842cb8f61eb668e06ea33d841 | |
| parent | c7b75c02268e92e446b4134a7e05ba58a64bd67f (diff) | |
| parent | bea7cc784d10c01436c308d2432e405c38de7f66 (diff) | |
| download | redot-engine-e551d5f523fa562befcd062b16cac2a518a5de2a.tar.gz | |
Merge pull request #83327 from AThousandShips/doc_suggestion
Make error suggestion less ambiguous
| -rw-r--r-- | scene/2d/physics_body_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/physics_body_2d.cpp b/scene/2d/physics_body_2d.cpp index fa94712396..baa3b0bb90 100644 --- a/scene/2d/physics_body_2d.cpp +++ b/scene/2d/physics_body_2d.cpp @@ -75,7 +75,7 @@ Ref<KinematicCollision2D> PhysicsBody2D::_move(const Vector2 &p_motion, bool p_t bool PhysicsBody2D::move_and_collide(const PhysicsServer2D::MotionParameters &p_parameters, PhysicsServer2D::MotionResult &r_result, bool p_test_only, bool p_cancel_sliding) { if (is_only_update_transform_changes_enabled()) { - ERR_PRINT("Move functions do not work together with 'sync to physics' option. Please read the documentation."); + ERR_PRINT("Move functions do not work together with 'sync to physics' option. See the documentation for details."); } bool colliding = PhysicsServer2D::get_singleton()->body_test_motion(get_rid(), p_parameters, &r_result); |
