Hi all,
I am trying to have object drooping on a wall and then move it using translate as per event until the end of the wall. The issue i am facing that when I create the object and place it on the wall/rope it starts to slide.
I want it to be idle and the user should move it because i am using walk animation. i tried to play with friction but no luck.
the code is follows for both object and the rope …
the object
[lua]
physics.addBody( obj,{ density=3, friction=0, bounce=0 } )
[/lua]
the wall
[lua]
physics.addBody( wall, { density=1, friction=0, bounce=0 } )
[/lua]
Regards
Abdulaziz