You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.
This is an old revision of the document!
llPassTouches(integer pass)
Indicates whether a child prim in a linkset should let the root know that it has been touched, when there is at least one script in the same child prim that has one of the touch events.
When a script in the root prim has a touch event, the whole object becomes touchable. However, when a child prim has at least one script that has a touch event and it's touched, by default only that prim will receive the touch, and the root will not receive it. This function allows changing that default, so that both the root and the child can receive the touches.
A boolean value indicating whether to pass touches to the root.
llPassTouches(TRUE); // Enables touch passing for this prim. llPassTouches(FALSE); // Disables touch passing.
When this simple script is dropped into a child prim that has more scripts, one of them with a touch event, it will let the root know that it has been touched. Imagine, for example, a swing where the seat is a child prim, and it has a script that activates a pose menu, and the root has a script that starts and stops swinging, but the seat where the pose menu is, is easier to touch than other prims. In that case, dropping this script will make both the swing script and the menu activate with a single touch of the seat.
default { state_entry() { llPassTouches(TRUE); } }