mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-12 05:42:01 +02:00
19 lines
663 B
JavaScript
19 lines
663 B
JavaScript
var WAVE = 'http://cdn.rawgit.com/ambisonictoolkit/atk-sounds/aa31005c/stereo/Aurora_Surgit-Lux_Aeterna.wav';
|
|
var uuid = Entities.addEntity({
|
|
type: "Shape",
|
|
shape: "Icosahedron",
|
|
dimensions: Vec3.HALF,
|
|
script: Script.resolvePath('../../tutorials/entity_scripts/ambientSound.js'),
|
|
position: Vec3.sum(Vec3.multiply(5, Quat.getForward(MyAvatar.orientation)), MyAvatar.position),
|
|
userData: JSON.stringify({
|
|
soundURL: WAVE,
|
|
maxVolume: 0.1,
|
|
range: 25,
|
|
disabled: true,
|
|
grab: { triggerable: true }
|
|
}),
|
|
lifetime: 600,
|
|
});
|
|
Script.scriptEnding.connect(function() {
|
|
Entities.deleteEntity(uuid);
|
|
});
|