mirror of
https://github.com/overte-org/overte.git
synced 2025-04-23 13:33:26 +02:00
Correct value to ENTIRE_DOMAIN_SCAN_RADIUS
Set the correct value to constant: ENTIRE_DOMAIN_SCAN_RADIUS var ENTIRE_DOMAIN_SCAN_RADIUS = 27713; to reach all the entities of a domain from the center,(including in the corners) the radius must be: sqr((16000 ^2) + (16000) ^2 + (16000 ^2)) which is once rounded = to 27713.
This commit is contained in:
parent
d575616a6d
commit
5d00341662
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ var CreateWindow = Script.require('./modules/createWindow.js');
|
|||
var TITLE_OFFSET = 60;
|
||||
var CREATE_TOOLS_WIDTH = 490;
|
||||
var MAX_DEFAULT_ENTITY_LIST_HEIGHT = 942;
|
||||
var ENTIRE_DOMAIN_SCAN_RADIUS = 22628;
|
||||
var ENTIRE_DOMAIN_SCAN_RADIUS = 27713;
|
||||
|
||||
var DEFAULT_IMAGE = "https://hifi-content.s3.amazonaws.com/DomainContent/production/no-image.jpg";
|
||||
|
||||
|
|
Loading…
Reference in a new issue