Difference between revisions of "LlDetectedTouchNormal"

From Second Life Wiki
Jump to navigation Jump to search
(pie, states)
Line 1: Line 1:
{{LSL_Function/detected|index|TouchNormal}}{{LSL_Function
{{LSL_Function/detected|index|TouchNormal|simple=*}}{{LSL_Function
|func_id=340|func_sleep=0.0|func_energy=10.0
|func_id=340|func_sleep=0.0|func_energy=10.0
|mode=pre-release
|mode=pre-release
|func=llDetectedTouchNormal
|func=llDetectedTouchNormal
|return_type=vector|return_text=that is the surface normal (perpendicular to the surface) where the touch event was triggered.
|return_type=vector|return_text=that is the surface normal (perpendicular to the surface) where the touch event was triggered.
Inside [[touch_start]], returns [[ZERO_VECTOR]] if the avatar's viewer does not support touch positions.
Inside [[Touch|touch]] and [[touch_end]], also returns [[ZERO_VECTOR]] if the mouse has moved away from the prim.
|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.
|func_desc
|func_desc
|spec
|spec
|caveats
|caveats=
'''{{LSL Const|ZERO_VECTOR|vecter|{{LSL_VR|0.0|0.0|0.0}}}} is returned when...'''
* The avatar's viewer does not support face touch detection.
** To check if face touch detection is supported check the return of [[llDetectedTouchFace]].
* The touch has moved off the surface of the prim.
* The triggering event is not a touch event.
|examples
|examples
|helpers
|helpers

Revision as of 17:20, 23 August 2008

Emblem-important-red.png Pre-release Documentation Warning!

This function is not available yet. This documentation was written prior to its final release so it may not match the final implementation.

Summary

Function: vector llDetectedTouchNormal( integer index );

Returns a vector that is the surface normal (perpendicular to the surface) where the touch event was triggered.

• 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.ZERO_VECTOR is returned when...
  • The avatar's viewer does not support face touch detection.
  • The touch has moved off the surface of the prim.
  • The triggering event is not a touch event.
All Issues ~ Search JIRA for related Bugs

Examples

See Also

Events

•  touch_start
•  touch
•  touch_end

Functions

•  llDetectedLinkNumber
•  llDetectedTouchFace
•  llDetectedTouchBinormal
•  llDetectedTouchPos

Articles

•  Detected

Deep Notes

History

Search JIRA for related Issues

Signature

function vector llDetectedTouchNormal( integer index );