diff options
Diffstat (limited to '')
-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. |