diff options
author | Magnuz Binder | 2015-05-03 07:50:13 +0200 |
---|---|---|
committer | dahlia | 2015-05-03 23:41:11 -0700 |
commit | 43b8bd0c35c1d7ca0c97a4e64fe255943148d333 (patch) | |
tree | 212cbce67281817d2884924ef8ac0ab9a9dcefd3 /bin/OpenSimDefaults.ini | |
parent | Only send parcel layer data around the point of interest. Can be disabled (diff) | |
download | opensim-SC-43b8bd0c35c1d7ca0c97a4e64fe255943148d333.zip opensim-SC-43b8bd0c35c1d7ca0c97a4e64fe255943148d333.tar.gz opensim-SC-43b8bd0c35c1d7ca0c97a4e64fe255943148d333.tar.bz2 opensim-SC-43b8bd0c35c1d7ca0c97a4e64fe255943148d333.tar.xz |
Implement llCastRay fully, simplified.
Diffstat (limited to 'bin/OpenSimDefaults.ini')
-rw-r--r-- | bin/OpenSimDefaults.ini | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index a5d7f1d..d3f183e 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -1477,6 +1477,44 @@ | |||
1477 | ; Avatar bounding box, upper Z value, coefficient to multiply with avatar height, when sitting | 1477 | ; Avatar bounding box, upper Z value, coefficient to multiply with avatar height, when sitting |
1478 | UpperAvatarBoundingBoxSittingZcoeff = 0.25 | 1478 | UpperAvatarBoundingBoxSittingZcoeff = 0.25 |
1479 | 1479 | ||
1480 | ; Safety coefficient for max bounding box from prim size box X coordinate | ||
1481 | ; Worst case is twisted and sheared box, 1+sqrt(2) | ||
1482 | PrimBoundingBoxSafetyCoefficientX = 2.414214 | ||
1483 | |||
1484 | ; Safety coefficient for max bounding box from prim size box Y coordinate | ||
1485 | ; Worst case is twisted and sheared box, 1+sqrt(2) | ||
1486 | PrimBoundingBoxSafetyCoefficientY = 2.414214 | ||
1487 | |||
1488 | ; Safety coefficient for max bounding box from prim size box Z coordinate | ||
1489 | ; Worst case is twisted tube, 0.5+sqrt(1.25) | ||
1490 | PrimBoundingBoxSafetyCoefficientZ = 1.618034 | ||
1491 | |||
1492 | ; Accepted calculation precision error in calculations in llCastRay | ||
1493 | FloatToleranceInLlCastRay = 0.000001 | ||
1494 | |||
1495 | ; Accepted distance difference between duplicate hits in llCastRay | ||
1496 | FloatTolerance2InLlCastRay = 0.0001 | ||
1497 | |||
1498 | ; Maximum number of returned hits from llCastRay | ||
1499 | MaxHitsInLlCastRay = 16 | ||
1500 | |||
1501 | ; Maximum number of returned hits per prim from llCastRay | ||
1502 | MaxHitsPerPrimInLlCastRay = 16 | ||
1503 | |||
1504 | ; Maximum number of returned hits per object from llCastRay | ||
1505 | MaxHitsPerObjectInLlCastRay = 16 | ||
1506 | |||
1507 | ; Report ray intersections with surfaces on exits from a prim as hits in llCastRay if true | ||
1508 | DetectExitHitsInLlCastRay = false | ||
1509 | |||
1510 | ; Filter on parts instead of groups in llCastRay if true | ||
1511 | FilterPartsInLlCastRay = false | ||
1512 | |||
1513 | ; Detect attachments in llCastRay if true | ||
1514 | DoAttachmentsInLlCastRay = false | ||
1515 | |||
1516 | ; Use legacy version 1 of llCastRay if true | ||
1517 | UseLlCastRayV1 = true | ||
1480 | 1518 | ||
1481 | [DataSnapshot] | 1519 | [DataSnapshot] |
1482 | ; The following set of configs pertains to search. | 1520 | ; The following set of configs pertains to search. |