i am making a rope with the help of the tuberenderer script here:-
http://wiki.unity3d.com/index.php/3D_Physics_Based_Rope
but then i realised there is no tuberenderer component anymore in unity 5.
is there a workaround or can anyone help me in making two ropes that can collide with each other .thanks.
Looks to me that tuberenderer is the name of a script (it’s posted below the rope script) and not a built in component.
If you want to add a tuberenderer to an object:
- Create a js script
- paste the code of the tuberenderer in it (http://wiki.unity3d.com/index.php/3D_Physics_Based_Rope#MODIFIED_TubeRenderer.js)
- drag the js script on your component
then if you need a reference to the tuberenderer make a public tuberenderer variable and drag the object with the tuberenderer script onto the variable in the editor.