From 45331e5a0e0edc2c1c747c93c3ba6d0b63f819d4 Mon Sep 17 00:00:00 2001 From: Eric Levin Date: Mon, 1 Jun 2015 09:37:54 -0700 Subject: [PATCH] removed sounds from grab script --- examples/grab.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/examples/grab.js b/examples/grab.js index f1e1b6571c..7ed69e9664 100644 --- a/examples/grab.js +++ b/examples/grab.js @@ -36,8 +36,6 @@ var angularVelocity = { z: 0 }; -var grabSound = SoundCache.getSound("https://hifi-public.s3.amazonaws.com/eric/sounds/CloseClamp.wav"); -var releaseSound = SoundCache.getSound("https://hifi-public.s3.amazonaws.com/eric/sounds/ReleaseClamp.wav"); var DROP_DISTANCE = 5.0; var DROP_COLOR = { @@ -90,10 +88,6 @@ function mousePressEvent(event) { gravity: {x: 0, y: 0, z: 0} }); - Audio.playSound(grabSound, { - position: props.position, - volume: 0.4 - }); } } @@ -135,11 +129,6 @@ function mouseReleaseEvent() { }); targetPosition = null; - Audio.playSound(grabSound, { - position: entityProps.position, - volume: 0.25 - }); - } }