From 005851a74a3e66d520cefe120b8dad811f56cf7d Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 27 Aug 2015 12:13:04 -0700 Subject: [PATCH] Increase default entity search radius to 100m --- examples/html/entityList.html | 4 ++-- examples/libraries/entityList.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/html/entityList.html b/examples/html/entityList.html index d7524c199c..2e3fdb1874 100644 --- a/examples/html/entityList.html +++ b/examples/html/entityList.html @@ -235,7 +235,7 @@
-  m +  m
@@ -256,7 +256,7 @@
- No entities found within a 50 meter radius. Try moving to a different location and refreshing. + No entities found within a 100 meter radius. Try moving to a different location and refreshing.
diff --git a/examples/libraries/entityList.js b/examples/libraries/entityList.js index e6bca9e7e1..55262c745d 100644 --- a/examples/libraries/entityList.js +++ b/examples/libraries/entityList.js @@ -4,7 +4,7 @@ EntityListTool = function(opts) { var url = Script.resolvePath('html/entityList.html'); var webView = new WebWindow('Entities', url, 200, 280, true); - var searchDiameter = 100; + var searchDiameter = 200; var visible = false;