Difference between revisions of "LlDetectedTouchUV"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 4: Line 4:
|return_type=vector|return_text=that is the texture coordinates for where the prim was touched. The x & y vector positions contain the u & v face coordinates respectively ('''{{NoWrap|{{LSL_VR|u|v|0.0}}}}''').
|return_type=vector|return_text=that is the texture coordinates for where the prim was touched. The x & y vector positions contain the u & v face coordinates respectively ('''{{NoWrap|{{LSL_VR|u|v|0.0}}}}''').


{{NoWrap|{{LSL_VR|-1.0|-1.0|0.0}}}} is returned when the touch UV coordinates cannot be determined. See [[#Caveats|Caveats]] for further details.
{{LSL Const|TOUCH_INVALID_TEXCOORD|vector|{{LSL_VR|-1.0|-1.0|0.0}}}} is returned when the touch UV coordinates cannot be determined. See [[#Caveats|Caveats]] for further details.
|p1_type=integer|p1_name=index
|p1_type=integer|p1_name=index
|func_footnote=For the {{LSLGC|Touch|touch}} category of events only.
|func_footnote=For the {{LSLGC|Touch|touch}} category of events only.
Line 10: Line 10:
|spec=
|spec=
|caveats=
|caveats=
'''{{NoWrap|{{LSL_VR|-1.0|-1.0|0.0}}}} is returned when...'''
'''{{LSL Const|TOUCH_INVALID_TEXCOORD|vector|{{LSL_VR|-1.0|-1.0|0.0}}}} is returned when...'''
* The avatar's viewer does not support face touch detection.
* The avatar's viewer does not support face touch detection.
** To check if face touch detection is supported check the return of [[llDetectedTouchFace]].
** To check if face touch detection is supported check the return of [[llDetectedTouchFace]].

Revision as of 12:09, 12 October 2008

Summary

Function: vector llDetectedTouchUV( integer index );

Returns a vector that is the texture coordinates for where the prim was touched. The x & y vector positions contain the u & v face coordinates respectively (<u, v, 0.0>).

TOUCH_INVALID_TEXCOORD is returned when the touch UV coordinates cannot be determined. See Caveats for further details.

• integer index Index of detection information

index does not support negative indexes. For the touch category of events only.

Caveats

  • If index is out of bounds the script continues to execute without an error message.TOUCH_INVALID_TEXCOORD is returned when...
  • The avatar's viewer does not support face touch detection.
  • The touch has moved off the surface of the prim.
  • The touch happened too close to the edge of the face to determine a location.
  • The triggering event is not a touch event.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> default {

   touch_start(integer UV_detected)
   {
       integer i = 0;
       for(; i<UV_detected; ++i)
           llWhisper(0, "UV clicked: " + (string)llDetectedTouchUV(i));
   }

}

</lsl>

See Also

Deep Notes

History

Search JIRA for related Issues

Signature

function vector llDetectedTouchUV( integer index );