11 lines
No EOL
360 B
JavaScript
11 lines
No EOL
360 B
JavaScript
// test url sounds if they work
|
|
|
|
(function() {
|
|
var SOUND_URL = "https://hifi-content.s3.amazonaws.com/elisalj/hub/sounds/swallow-7.wav";
|
|
var SOUND = SoundCache.getSound(SOUND_URL);
|
|
|
|
this.clickDownOnEntity = function(entityID, mouseEvent) {
|
|
Audio.playSound(SOUND, {volume: 0.5, position: Entities.getEntityProperties(entityID).position});
|
|
}
|
|
|
|
}); |