|
|
|
@ -117,8 +117,8 @@ export class MarkWindow extends UIBase {
|
|
|
|
|
isShowProperty3d: boolean = true; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 是否显示水源 |
|
|
|
|
*/ |
|
|
|
|
* 是否显示水源 |
|
|
|
|
*/ |
|
|
|
|
isShowWaterSource = false; |
|
|
|
|
|
|
|
|
|
//#region 生命周期
|
|
|
|
@ -145,7 +145,9 @@ export class MarkWindow extends UIBase {
|
|
|
|
|
|
|
|
|
|
this.weatherTool = new WeatherTool(SceneManager.Instance.defaultCamera, SceneManager.Instance.scene); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SceneManager.Instance.scene.onBeforeRenderObservable.add(() => { |
|
|
|
|
instance.onUpdateShow(); |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -623,9 +625,9 @@ export class MarkWindow extends UIBase {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 改变风向 |
|
|
|
|
* @param temperature
|
|
|
|
|
*/ |
|
|
|
|
* 改变风向 |
|
|
|
|
* @param temperature
|
|
|
|
|
*/ |
|
|
|
|
changeNature_windDirection(windDirection: WindDirectionType) { |
|
|
|
|
if (this.currentMarkNodeInfo == null) { |
|
|
|
|
return; |
|
|
|
@ -635,9 +637,9 @@ export class MarkWindow extends UIBase {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 改变风速 |
|
|
|
|
* @param temperature
|
|
|
|
|
*/ |
|
|
|
|
* 改变风速 |
|
|
|
|
* @param temperature
|
|
|
|
|
*/ |
|
|
|
|
changeNature_windPower(windPower: number) { |
|
|
|
|
if (this.currentMarkNodeInfo == null) { |
|
|
|
|
return; |
|
|
|
@ -646,7 +648,77 @@ export class MarkWindow extends UIBase {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 播放或暂停演出系统 |
|
|
|
|
* @param play false 表示暂停 |
|
|
|
|
*/ |
|
|
|
|
playOrPauseShow(play: boolean) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 调至某一节点 |
|
|
|
|
*/ |
|
|
|
|
skipToNode(nodeID: string) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#region 演出系统
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 当前演出剩余时间 |
|
|
|
|
*/ |
|
|
|
|
currentShowTime: number; |
|
|
|
|
/** |
|
|
|
|
* 当前节点的完整演出时间 |
|
|
|
|
*/ |
|
|
|
|
totalShowTime: number; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 是否正在演出 |
|
|
|
|
*/ |
|
|
|
|
isPlayingShow: boolean = false; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 播放 |
|
|
|
|
* @param id
|
|
|
|
|
*/ |
|
|
|
|
playMarkNode(id: number) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//通知前端
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 每帧更新 |
|
|
|
|
*/ |
|
|
|
|
onUpdateShow() { |
|
|
|
|
|
|
|
|
|
if (this.isPlayingShow) { |
|
|
|
|
if (this.currentShowTime > 0) { |
|
|
|
|
this.currentShowTime -= SceneManager.Instance.scene.deltaTime * 0.001; |
|
|
|
|
|
|
|
|
|
if (this.currentShowTime <= 0) { |
|
|
|
|
let l_currentMarkNodeData: MarkNodeData = this.currentMarkNodeInfo.nodeData; |
|
|
|
|
//播放下一个节点
|
|
|
|
|
this.getNextNode(l_currentMarkNodeData.id); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
@ -904,6 +976,13 @@ export class MarkWindow extends UIBase {
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取当前方案下,下一个节点,null表示没有了 |
|
|
|
|
*/ |
|
|
|
|
getNextNode(id: number) { |
|
|
|
|
let result: MarkNodeInfo = null; |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#endregion
|
|
|
|
|