diff options
author | Magnuz Binder | 2015-04-20 21:30:06 +0200 |
---|---|---|
committer | Michael Cerquoni | 2015-04-20 16:23:34 -0400 |
commit | 263db441292956a8210a00c037848165667ab90e (patch) | |
tree | f9e5df1736925b4598d40a6f08ac3ed628078e15 /bin/OpenSimDefaults.ini | |
parent | Revert "Enable grab feature (Ctrl+Drag) for non-physical link-sets and add co... (diff) | |
download | opensim-SC-263db441292956a8210a00c037848165667ab90e.zip opensim-SC-263db441292956a8210a00c037848165667ab90e.tar.gz opensim-SC-263db441292956a8210a00c037848165667ab90e.tar.bz2 opensim-SC-263db441292956a8210a00c037848165667ab90e.tar.xz |
Implement llGetBoundingBox fully.
Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
Diffstat (limited to 'bin/OpenSimDefaults.ini')
-rw-r--r-- | bin/OpenSimDefaults.ini | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index af37ccc..295b058 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -1397,6 +1397,86 @@ | |||
1397 | ; Maximum number of external urls that scripts can set up in this simulator (e.g. via llRequestURL()) | 1397 | ; Maximum number of external urls that scripts can set up in this simulator (e.g. via llRequestURL()) |
1398 | max_external_urls_per_simulator = 100 | 1398 | max_external_urls_per_simulator = 100 |
1399 | 1399 | ||
1400 | ; Use size boxes instead of meshed prims, sculpts and mesh when calculating bounding boxes. | ||
1401 | ; Speeds up calculations but can make them inaccurate, in some cases very inaccurate. | ||
1402 | UseSimpleBoxesInGetBoundingBox = false | ||
1403 | |||
1404 | ; Add a third vector with stats when returning results from llGetBoundingBox. | ||
1405 | ; Lists objects (groups), prims/meshes/avatars (parts) and vertices rendered. | ||
1406 | AddStatsInGetBoundingBox = false | ||
1407 | |||
1408 | ; Avatar bounding box, lower X value, constant part, when standing | ||
1409 | LowerAvatarBoundingBoxStandingXconst = -0.275 | ||
1410 | |||
1411 | ; Avatar bounding box, upper X value, constant part, when standing | ||
1412 | UpperAvatarBoundingBoxStandingXconst = 0.275 | ||
1413 | |||
1414 | ; Avatar bounding box, lower Y value, constant part, when standing | ||
1415 | LowerAvatarBoundingBoxStandingYconst = -0.35 | ||
1416 | |||
1417 | ; Avatar bounding box, upper Y value, constant part, when standing | ||
1418 | UpperAvatarBoundingBoxStandingYconst = 0.35 | ||
1419 | |||
1420 | ; Avatar bounding box, lower Z value, constant part, when standing | ||
1421 | LowerAvatarBoundingBoxStandingZconst = -0.1 | ||
1422 | |||
1423 | ; Avatar bounding box, lower Z value, coefficient to multiply with avatar height, when standing | ||
1424 | LowerAvatarBoundingBoxStandingZcoeff = -0.5 | ||
1425 | |||
1426 | ; Avatar bounding box, upper Z value, constant part, when standing | ||
1427 | UpperAvatarBoundingBoxStandingZconst = 0.1 | ||
1428 | |||
1429 | ; Avatar bounding box, upper Z value, coefficient to multiply with avatar height, when standing | ||
1430 | UpperAvatarBoundingBoxStandingZcoeff = 0.5 | ||
1431 | |||
1432 | ; Avatar bounding box, lower X value, constant part, when groundsitting | ||
1433 | LowerAvatarBoundingBoxGroundsittingXconst = -0.3875 | ||
1434 | |||
1435 | ; Avatar bounding box, upper X value, constant part, when groundsitting | ||
1436 | UpperAvatarBoundingBoxGroundsittingXconst = 0.3875 | ||
1437 | |||
1438 | ; Avatar bounding box, lower Y value, constant part, when groundsitting | ||
1439 | LowerAvatarBoundingBoxGroundsittingYconst = -0.5 | ||
1440 | |||
1441 | ; Avatar bounding box, upper Y value, constant part, when groundsitting | ||
1442 | UpperAvatarBoundingBoxGroundsittingYconst = 0.5 | ||
1443 | |||
1444 | ; Avatar bounding box, lower Z value, constant part, when groundsitting | ||
1445 | LowerAvatarBoundingBoxGroundsittingZconst = -0.05 | ||
1446 | |||
1447 | ; Avatar bounding box, lower Z value, coefficient to multiply with avatar height, when groundsitting | ||
1448 | LowerAvatarBoundingBoxGroundsittingZcoeff = -0.375 | ||
1449 | |||
1450 | ; Avatar bounding box, upper Z value, constant part, when groundsitting | ||
1451 | UpperAvatarBoundingBoxGroundsittingZconst = 0.5 | ||
1452 | |||
1453 | ; Avatar bounding box, upper Z value, coefficient to multiply with avatar height, when groundsitting | ||
1454 | UpperAvatarBoundingBoxGroundsittingZcoeff = 0.0 | ||
1455 | |||
1456 | ; Avatar bounding box, lower X value, constant part, when sitting | ||
1457 | LowerAvatarBoundingBoxSittingXconst = -0.5875 | ||
1458 | |||
1459 | ; Avatar bounding box, upper X value, constant part, when sitting | ||
1460 | UpperAvatarBoundingBoxSittingXconst = 0.1875 | ||
1461 | |||
1462 | ; Avatar bounding box, lower Y value, constant part, when sitting | ||
1463 | LowerAvatarBoundingBoxSittingYconst = -0.35 | ||
1464 | |||
1465 | ; Avatar bounding box, upper Y value, constant part, when sitting | ||
1466 | UpperAvatarBoundingBoxSittingYconst = 0.35 | ||
1467 | |||
1468 | ; Avatar bounding box, lower Z value, constant part, when sitting | ||
1469 | LowerAvatarBoundingBoxSittingZconst = -0.35 | ||
1470 | |||
1471 | ; Avatar bounding box, lower Z value, coefficient to multiply with avatar height, when sitting | ||
1472 | LowerAvatarBoundingBoxSittingZcoeff = -0.375 | ||
1473 | |||
1474 | ; Avatar bounding box, upper Z value, constant part, when sitting | ||
1475 | UpperAvatarBoundingBoxSittingZconst = -0.25 | ||
1476 | |||
1477 | ; Avatar bounding box, upper Z value, coefficient to multiply with avatar height, when sitting | ||
1478 | UpperAvatarBoundingBoxSittingZcoeff = 0.25 | ||
1479 | |||
1400 | 1480 | ||
1401 | [DataSnapshot] | 1481 | [DataSnapshot] |
1402 | ; The following set of configs pertains to search. | 1482 | ; The following set of configs pertains to search. |