Merge pull request #7389 from Menithal/on-grab-fix

Grab.js: Update Position on Mouse Grab Start
This commit is contained in:
Philip Rosedale 2016-03-21 17:10:00 -07:00
commit c8816f8e76

View file

@ -373,6 +373,10 @@ Grabber.prototype.pressEvent = function(event) {
beacon.updatePosition(this.startPosition);
if(!entityIsGrabbedByOther(this.entityID)){
this.moveEvent(event);
}
// TODO: play sounds again when we aren't leaking AudioInjector threads
//Audio.playSound(grabSound, { position: entityProperties.position, volume: VOLUME });
}