mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-14 00:08:08 +02:00
21 lines
673 B
JavaScript
21 lines
673 B
JavaScript
//
|
|
// baseballCrowd.js
|
|
// examples/acScripts
|
|
//
|
|
// Created by Stephen Birarda on 10/20/15.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
var crowd1 = SoundCache.getSound("atp:d9978e693035d4e2b5c7b546c8cccfb2dde5677834d9eed5206ccb2da55b4732.wav");
|
|
|
|
function maybePlaySound(deltaTime) {
|
|
if (crowd1.downloaded && !crowd1.isPlaying) {
|
|
Audio.playSound(crowd1, { position: { x: 0, y: 0, z: 0}, loop: true, volume: 0.5 });
|
|
Script.update.disconnect(maybePlaySound);
|
|
}
|
|
}
|
|
|
|
Script.update.connect(maybePlaySound);
|