From c2f9a495980edfed6fdfecea2796186f473d876c Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Wed, 4 Nov 2015 11:15:57 -0800 Subject: [PATCH] don't grab light --- examples/controllers/handControllerGrab.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/controllers/handControllerGrab.js b/examples/controllers/handControllerGrab.js index 48cc299326..2d82896e26 100644 --- a/examples/controllers/handControllerGrab.js +++ b/examples/controllers/handControllerGrab.js @@ -448,6 +448,10 @@ function MyController(hand) { continue; } + if (propsForCandidate.type == 'Light') { + continue; + } + if (propsForCandidate.locked && !grabbableDataForCandidate.wantsTrigger) { continue; }