mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-08 01:49:43 +02:00
Increase default entity search radius to 100m
This commit is contained in:
parent
a553022adf
commit
005851a74a
2 changed files with 3 additions and 3 deletions
|
@ -235,7 +235,7 @@
|
||||||
<div id="entity-list">
|
<div id="entity-list">
|
||||||
<div id="search-area">
|
<div id="search-area">
|
||||||
<input type="text" class="search" id="filter" placeholder="Filter" />
|
<input type="text" class="search" id="filter" placeholder="Filter" />
|
||||||
<span id="radius-and-unit"><input type="number" id="radius" value="50" /> m</span>
|
<span id="radius-and-unit"><input type="number" id="radius" value="100" /> m</span>
|
||||||
</div>
|
</div>
|
||||||
<table id="entity-table">
|
<table id="entity-table">
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -256,7 +256,7 @@
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div id="no-entities">
|
<div id="no-entities">
|
||||||
No entities found within a <span id="no-entities-radius">50</span> meter radius. Try moving to a different location and refreshing.
|
No entities found within a <span id="no-entities-radius">100</span> meter radius. Try moving to a different location and refreshing.
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -4,7 +4,7 @@ EntityListTool = function(opts) {
|
||||||
var url = Script.resolvePath('html/entityList.html');
|
var url = Script.resolvePath('html/entityList.html');
|
||||||
var webView = new WebWindow('Entities', url, 200, 280, true);
|
var webView = new WebWindow('Entities', url, 200, 280, true);
|
||||||
|
|
||||||
var searchDiameter = 100;
|
var searchDiameter = 200;
|
||||||
|
|
||||||
var visible = false;
|
var visible = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue