Play whoosh sound before deletion

The sound "whoosh" is now played before calling the notification deletion.
Previously it was called after and the effect was a bit wasted by this.
This commit is contained in:
Alezia Kurdis 2022-09-17 22:17:37 -04:00 committed by GitHub
parent 4a49631007
commit 425cd51cd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,9 +75,9 @@
var hipsPosition = MyAvatar.getJointPosition("Hips");
var eyesRelativeHeight = eyesPosition.y - hipsPosition.y;
if (myLeftHand.translation.y > eyesRelativeHeight || myRightHand.translation.y > eyesRelativeHeight) {
audioFeedback.action();
deleteAllExistingNotificationsDisplayed();
notifications = [];
audioFeedback.action();
}
}