mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 21:03:42 +02:00
Merge pull request #8816 from davidkelly/dk/1811
CellScience play button doesn't play anything
This commit is contained in:
commit
f9054bef9b
2 changed files with 5 additions and 5 deletions
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
|
||||
(function() {
|
||||
var baseURL = "https://hifi-production.s3.amazonaws.com/hifi-production/DomainContent/CellScience/";
|
||||
var baseURL = "https://hifi-production.s3.amazonaws.com/DomainContent/CellScience/";
|
||||
var self = this;
|
||||
this.buttonImageURL = baseURL + "GUI/play_audio.svg?2";
|
||||
|
||||
|
@ -116,4 +116,4 @@
|
|||
Controller.mousePressEvent.connect(this.onClick);
|
||||
Script.update.connect(this.update);
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -47,8 +47,7 @@
|
|||
stereo: true,
|
||||
loop: false,
|
||||
localOnly: true,
|
||||
volume: 0.035,
|
||||
position: properties.position
|
||||
volume: 0.45,
|
||||
};
|
||||
self.sound = SoundCache.getSound(self.soundURL);
|
||||
self.buttonImageURL = baseURL + "GUI/GUI_audio.png?" + version;
|
||||
|
@ -142,6 +141,7 @@
|
|||
Overlays.editOverlay(self.button, {
|
||||
visible: false
|
||||
});
|
||||
self.soundOptions.position = MyAvatar.position;
|
||||
this.soundPlaying = Audio.playSound(self.sound, self.soundOptions);
|
||||
} else {
|
||||
// print("not downloaded");
|
||||
|
@ -162,4 +162,4 @@
|
|||
|
||||
Controller.mousePressEvent.connect(this.onClick);
|
||||
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue