Quantcast
Channel: Questions in topic: "rope"
Viewing all articles
Browse latest Browse all 194

Rope Climbing issue?

$
0
0
hello .recently i decided to add chain (rope) to my game and i ended up![alt text][1] with this: [1]: /storage/temp/89223-ask.png i used HingeJoint2D to make the chain. my idea for player swinging with the chain is the DistanceJoint2D attached to the player. (The blue marker shown in the picture) when the red horizontal line collides with any chain link my script join the distancejoint2d to the chain link. **but the problem is player continuously getting close to the chain and stucks!!!** here is the code that joins the distanceJoint2d : onRope = Physics2D.OverlapBox(pos, topSize, 1, ropeLayer); if (onRope) { DistanceJoint2D dis2d = GetComponent (); Rigidbody2D rigid = GetComponent (); if (!standing) { if (onRope.gameObject.tag == "ChainLink") { dis2d.enabled = true; dis2d.connectedBody = onRope.gameObject.GetComponent (); dis2d.distance = 0f; dis2d.maxDistanceOnly = true; dis2d.enableCollision = false; } } else { dis2d.enabled = false; } } } **which joint2D should i use to achieve the goal rope climbing?**

Viewing all articles
Browse latest Browse all 194

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>