From 6c21c44beb11587d582b566ad7ffa4433e09ef8f Mon Sep 17 00:00:00 2001 From: Atlante45 Date: Tue, 29 Jul 2014 11:52:25 -0700 Subject: [PATCH] Bumped up the search radius to 50 --- examples/sit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sit.js b/examples/sit.js index 793a1b1d67..f8436a0fc8 100644 --- a/examples/sit.js +++ b/examples/sit.js @@ -261,7 +261,7 @@ function update(deltaTime){ MyAvatar.position.z != avatarOldPosition.z) { avatarOldPosition = MyAvatar.position; - var SEARCH_RADIUS = 10; + var SEARCH_RADIUS = 50; var foundModels = Models.findModels(MyAvatar.position, SEARCH_RADIUS); // Let's remove indicator that got out of radius for (model in models) {