Using Sound Entity for the portal

Using Sound Entity for the portal, this simplify the termination of the looping sound.
This commit is contained in:
Alezia Kurdis 2025-01-17 21:23:46 -05:00 committed by GitHub
parent ec47320ee2
commit c70fb31367
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,21 +15,14 @@
var portalURL = ""; var portalURL = "";
var portalName = ""; var portalName = "";
var TP_SOUND = SoundCache.getSound(ROOT + "sounds/teleportSound.mp3"); var TP_SOUND = SoundCache.getSound(ROOT + "sounds/teleportSound.mp3");
var PORTAL_SOUND = SoundCache.getSound(ROOT + "sounds/portalSound.mp3");
var portalInjector = Uuid.NONE;
var portalPosition;
this.preload = function(entityID) { this.preload = function(entityID) {
var properties = Entities.getEntityProperties(entityID, ["userData", "dimensions", "position"]); var properties = Entities.getEntityProperties(entityID, ["userData", "dimensions"]);
var userDataObj = JSON.parse(properties.userData); var userDataObj = JSON.parse(properties.userData);
portalURL = userDataObj.url; portalURL = userDataObj.url;
portalName = userDataObj.name; portalName = userDataObj.name;
portalPosition = properties.position;
var portalColor = getColorFromPlaceID(userDataObj.placeID); var portalColor = getColorFromPlaceID(userDataObj.placeID);
//HERE WE RENDER EFFECT
var textLocalPosition = {"x": 0.0, "y": (properties.dimensions.y / 2) * 1.2, "z": 0.0}; var textLocalPosition = {"x": 0.0, "y": (properties.dimensions.y / 2) * 1.2, "z": 0.0};
var scale = textLocalPosition.y/1.2; var scale = textLocalPosition.y/1.2;
@ -44,7 +37,7 @@
}, },
"name": portalName, "name": portalName,
"text": portalName, "text": portalName,
//"textColor": portalColor.saturated, "textColor": portalColor.light,
"lineHeight": 0.10 * scale, "lineHeight": 0.10 * scale,
"backgroundAlpha": 0.0, "backgroundAlpha": 0.0,
"unlit": true, "unlit": true,
@ -119,27 +112,19 @@
"spinStart": 0, "spinStart": 0,
"spinFinish": 0 "spinFinish": 0
},"local"); },"local");
if (PORTAL_SOUND.downloaded) {
playLoopSound();
} else {
PORTAL_SOUND.ready.connect(onSoundReady);
}
}
function onSoundReady() { var loopSoundID = Entities.addEntity({
PORTAL_SOUND.ready.disconnect(onSoundReady); "type": "Sound",
playLoopSound(); "parentID": entityID,
} "localPosition": {"x": 0.0, "y": 0.0, "z": 0.0},
"name": "PORTAL SOUND",
function playLoopSound() { "soundURL": ROOT + "sounds/portalSound.mp3",
var injectorOptions = {
"position": portalPosition,
"volume": 0.15, "volume": 0.15,
"loop": true, "loop": true,
"positional": true,
"localOnly": true "localOnly": true
}; },"local");
portalInjector = Audio.playSound(PORTAL_SOUND, injectorOptions);
} }
this.enterEntity = function(entityID) { this.enterEntity = function(entityID) {
@ -153,16 +138,11 @@
var timer = Script.setTimeout(function () { var timer = Script.setTimeout(function () {
Window.location = portalURL; Window.location = portalURL;
portalInjector.stop();
Entities.deleteEntity(entityID); Entities.deleteEntity(entityID);
}, 1000); }, 1000);
}; };
this.unload = function(entityID) {
portalInjector.stop();
};
function getColorFromPlaceID(placeID) { function getColorFromPlaceID(placeID) {
var idIntegerConstant = getStringScore(placeID); var idIntegerConstant = getStringScore(placeID);
var hue = (idIntegerConstant%360)/360; var hue = (idIntegerConstant%360)/360;