-
-
Notifications
You must be signed in to change notification settings - Fork 21.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tweak Joint2D and Joint3D documentation for consistency #87446
Tweak Joint2D and Joint3D documentation for consistency #87446
Conversation
02ec0cf
to
ab6022c
Compare
K-kindly removed the request from the documentation team. I LITERALLY AM THE DOCUMENTATION TEAM |
Well you'll have a hard time getting reviews without asking for reviews. The documentation team has more members than one ;) |
doc/classes/Joint2D.xml
Outdated
</member> | ||
<member name="node_a" type="NodePath" setter="set_node_a" getter="get_node_a" default="NodePath("")"> | ||
The first body attached to the joint. Must derive from [PhysicsBody2D]. | ||
Path to the first body (A) attached to the joint. The node must inherit [PhysicsBody2D]. | ||
If left empty and [member node_b] is set, the body hangs as if attached to an invisible [StaticBody2D]. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is currently only true for PinJoint2D
. See the GodotPhysicsServer2D::joint_make_*
methods (in contrast to the 3D equivalents). I think we should make the implementation consistent with 3D (so this documentation description becomes true), if it makes sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Definitely. For now I can strip this detail from Joint2D but it should be the case...
ab6022c
to
4017b11
Compare
4017b11
to
0531f96
Compare
Updated the PR to address the above issues, you may look again. |
Thanks! |
Small tweaks to both Joint2D and Joint3D to make the wording consistent between the two. Also makes the description of
node_a
andnode_b
less misleading.