Difference between revisions of "LlVolumeDetect"
Jump to navigation
Jump to search
m (LSL llVolumeDetect moved to LlVolumeDetect: removing prefix) |
Frionil Fang (talk | contribs) (this must have changed: moving an object in a setpos loop *will* trigger collision_start/end events against both avs and physical objects) |
||
(33 intermediate revisions by 14 users not shown) | |||
Line 1: | Line 1: | ||
{{LSL_Function | {{LSL_Function | ||
|inject-2={{Issues/SVC-2490}}{{Issues/SVC-8141}}{{Issues/SVC-2996}}{{LSL_Function/boolean|detect|default=false}} | |||
|func_id=248|func_sleep=0.0|func_energy=10.0 | |func_id=248|func_sleep=0.0|func_energy=10.0 | ||
|func=llVolumeDetect|p1_type=integer|p1_name=detect | |func=llVolumeDetect|p1_type=integer|p1_subtype=boolean|p1_name=detect | ||
|func_footnote | |func_footnote=This works much like Phantom, but unlike Phantom, VolumeDetect objects trigger [[collision_start]] and [[collision_end]] events when interpenetrating. Collision events will trigger in any script in the object. | ||
|func_desc=If | |func_desc=If {{LSLP|detect}} is [[TRUE]], VolumeDetect is enabled, physical object and avatars can pass through the object. | ||
|return_text | |return_text | ||
|spec | |spec= | ||
|caveats=* | {{{!}} {{Prettytable|style=float:left;}} | ||
* | {{!}}+ Events queued depending on type | ||
{{!}}- | |||
! | |||
! {{Hl2}} {{!}} VolumeDetect | |||
! {{Hl2}} {{!}} Phantom | |||
{{!}}- align="center" | |||
! {{Hl2}} {{!}} Events<br/>Supported | |||
{{!!}} [[collision_start]]<br/><br/>[[collision_end]] | |||
{{!!}} [[land_collision_start]]<br/>[[land_collision]]<br/>[[land_collision_end]] | |||
{{!}}- align="center" | |||
{{!}}} | |||
====Differences==== | |||
There are a couple differences in how Phantom and VolumeDetect handle collisions; specifically which events are supported and how they handle the ground. | |||
<div style="clear:left;"> | |||
======VolumeDetect====== | |||
*When physical they fall through the ground with the risk of going off-world. | |||
*[[collision]] events are not triggered | |||
======Phantom====== | |||
*When physical they collide with the ground but will not pass through (normal physical object behavior), {{LSLGC|Land Collision|land collision}} events are queued. | |||
</div> | |||
|caveats= | |||
*It can only be applied to the root prim (which will make the entire object VolumeDetect). | |||
*If the volume detecting object is ''not'' physical, it can only detect physical objects and avatars. If the object ''is'' physical, it can detect its collisions with static and [[llSetKeyframedMotion|keyframed motion]] objects as well. | |||
===Attachments=== | |||
'''Note:''' Attachments are not included in the avatar's bounding box. {{LSLGC|Collision|Collision events}} received by attachments are collisions the avatar is having with the world, not collisions the attachment is having. Nothing actually can collide with an attachment{{Footnote|Even if attachments were included in an avatars bounding box, you would not like the outcome, the avatars bounding box is not deformed by animations.}}. | |||
*It is meaningless to enabled on attachments. Attachments cannot collide with anything. | |||
*Attachments do not receive collision events for avatar collisions with VolumeDetect objects. | |||
**Attachments do receive collision events for avatar collisions with non-VolumeDetect, non-phantom objects. | |||
|constants | |constants | ||
|examples | |examples=<syntaxhighlight lang="lsl2">default | ||
{ | |||
state_entry() | |||
{ | |||
llVolumeDetect(TRUE); // Starts llVolumeDetect | |||
} | |||
collision_start(integer total_number) | |||
{ | |||
llSay(0, "Detected!"); // Tells you when something penetrates the prim | |||
} | |||
}</syntaxhighlight> | |||
|helpers | |helpers | ||
|also_functions | |also_functions= | ||
|also_events | {{LSL DefineRow||[[llPassCollisions]]|}} | ||
|also_events= | |||
{{LSL DefineRow||[[collision_start]]|}} | |||
{{LSL DefineRow||[[collision]]|}} | |||
{{LSL DefineRow||[[collision_end]]|}} | |||
|also_tests | |also_tests | ||
|also_articles | |also_articles | ||
|notes | |notes | ||
|sort=VolumeDetect | |sort=VolumeDetect | ||
|cat1=Collision | |cat1=Collision | ||
|cat2=Physics | |cat2=Physics | ||
|cat3 | |cat3=Object | ||
|cat4 | |cat4=Phantom | ||
}} | }} |
Latest revision as of 04:24, 11 October 2024
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: llVolumeDetect( integer detect );0.0 | Forced Delay |
10.0 | Energy |
If detect is TRUE, VolumeDetect is enabled, physical object and avatars can pass through the object.
• integer | detect | – | TRUE enables, FALSE (default) disables |
This works much like Phantom, but unlike Phantom, VolumeDetect objects trigger collision_start and collision_end events when interpenetrating. Collision events will trigger in any script in the object.
Specification
VolumeDetect | Phantom | |
---|---|---|
Events Supported |
collision_start collision_end |
land_collision_start land_collision land_collision_end |
Differences
There are a couple differences in how Phantom and VolumeDetect handle collisions; specifically which events are supported and how they handle the ground.
VolumeDetect
- When physical they fall through the ground with the risk of going off-world.
- collision events are not triggered
Phantom
- When physical they collide with the ground but will not pass through (normal physical object behavior), land collision events are queued.
Caveats
- llDetectedLinkNumber will return 0 in collision_start and collision_end events of VolumeDetect objects (SVC-2996).
- It can only be applied to the root prim (which will make the entire object VolumeDetect).
- If the volume detecting object is not physical, it can only detect physical objects and avatars. If the object is physical, it can detect its collisions with static and keyframed motion objects as well.
Attachments
Note: Attachments are not included in the avatar's bounding box. Collision events received by attachments are collisions the avatar is having with the world, not collisions the attachment is having. Nothing actually can collide with an attachment[1].
- It is meaningless to enabled on attachments. Attachments cannot collide with anything.
- Attachments do not receive collision events for avatar collisions with VolumeDetect objects.
- Attachments do receive collision events for avatar collisions with non-VolumeDetect, non-phantom objects.
Examples
default
{
state_entry()
{
llVolumeDetect(TRUE); // Starts llVolumeDetect
}
collision_start(integer total_number)
{
llSay(0, "Detected!"); // Tells you when something penetrates the prim
}
}