Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Attaching "hose nozzle" to the end of the rope
#2
(17-05-2023, 06:51 AM)Alberos Wrote: In the past I can achieve the OK result by using Rod instead of Rope and using 2 attachment points, one at the extreme end and another a bit farther out (see my beautiful Paint drawing skill).

Hi!

If you're using a rod, should not be necessary to use 2 attachment points: a single attachment point with "constrain orientation" enabled should do, since rods explicitly simulate orientation/torsion, unlike ropes.


(17-05-2023, 06:51 AM)Alberos Wrote: However, this time, I needed a Rope because I want to change its size at runtime. The tube will also be clear, which make it harder to hide stuff. Lastly, from what I understand, I need a dynamic attachment because I want to reel in the rope at the other end, dragging the head piece along with the rope. There is also a similar setup tube (in blue) branching off of a main clear tube. The End and EndPre control point and its dynamic attachment collider is set to not collide with each other. At least I want the rope to not do this:

The head piece (kind of like a plug) is not align with the tube. In some case it's worst than this (the plug is almost completely out of the tube)

[quote='Alberos' pid='14291' dateline='1684302669']
Any advice to make the end piece stay inside the tube but not increasing performance cost too much? I'm really worried about the performance, I don't think using 4 dynamics would be OK in a mobile VR. 

Attachments (both dynamic and static) are dirt cheap, they won't even show up in the profiler. Rope simulation and rendering are a lot more expensive comparatively, so I wouldn't worry about attachment performance at all.

(17-05-2023, 06:51 AM)Alberos Wrote: I'm thinking of attaching the end piece to the rope particle instead (using particle position/rotation in code?) but this end piece do need to be able to be grabbed and moved by player (VR) so I fear if I do that it might not work.

If you want perfect alignment at all moments between the rope and the object, your best bet is to explicitly set the object's position to follow the rope. This of course won't allow you to pick up the object or interact with it, but you can pick up the rope directly instead using the particles API:

http://obi.virtualmethodstudio.com/manua...icles.html

For instance, detect whether certain particles are in contact with a collider (or inside a trigger), and then set their position to follow user input.

kind regards,
Reply


Messages In This Thread
RE: Attaching "hose nozzle" to the end of the rope - by josemendez - 17-05-2023, 03:40 PM