forked from nightonmars/FMOD-Organisation-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRetrieveEffectChain.js
More file actions
40 lines (38 loc) · 1.3 KB
/
RetrieveEffectChain.js
File metadata and controls
40 lines (38 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
studio.menu.addMenuItem({
name: "FMOD Examples ...\\Find effect chains",
execute: function() {
var event = studio.window.browserCurrent();
if (event.entity === "Event") {
var effects = event.masterTrack.mixerGroup.effectChain.effects;
if (effects.length <= 1)
{
console.log("Only found 1 effect which may be the fader");
return;
}
var foundEffectChain = false
effects.forEach(function(effect)
{
if (effect.entity == "ProxyEffect")
{
var subChain = effect.preset.effect.effects;
if (subChain != null)
{
console.log("Found an effect chain");
foundEffectChain = true;
subChain.forEach(function(subEffect)
{
console.log(subEffect);
})
console.log("End of the effect chain");
}
}
})
if (!foundEffectChain)
console.log("Could not find an effect chain");
}
else
{
console.log("Please select an event");
}
}
});