continue playing scene after selecting specific part
这个提交包含在:
父节点
0e9f6f8d70
当前提交
5dba520155
@ -352,8 +352,13 @@ function sceneSet(questSceneMstId, cust) {
|
|||||||
if (part === '{All}') {
|
if (part === '{All}') {
|
||||||
scenePlaylist.push(utage.scenes[cust][questSceneMstId]);
|
scenePlaylist.push(utage.scenes[cust][questSceneMstId]);
|
||||||
} else {
|
} else {
|
||||||
partPlaylist.push(part);
|
|
||||||
currentScene = utage.scenes[cust][questSceneMstId];
|
currentScene = utage.scenes[cust][questSceneMstId];
|
||||||
|
try {
|
||||||
|
partPlaylist.push.apply(partPlaylist, currentScene.Parts.slice(currentScene.Parts.indexOf(part)));
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
playNext();
|
playNext();
|
||||||
|
正在加载...
x
在新工单中引用
屏蔽一个用户