|
|
|
@ -83,7 +83,7 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
//监听 delete键盘事件
|
|
|
|
|
this.game.scene.onBeforeRenderObservable.add(() => { |
|
|
|
|
PlanComponent.instance.ngAfterViewCheckedA(); |
|
|
|
|
PlanComponent.instance.onUpdate(); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -130,9 +130,9 @@ export class PlanComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 视图检测改变之后 |
|
|
|
|
* 三维渲染前(每帧调用) |
|
|
|
|
*/ |
|
|
|
|
ngAfterViewCheckedA() { |
|
|
|
|
onUpdate() { |
|
|
|
|
let currentTime = new Date().getTime(); |
|
|
|
|
let space = currentTime - this.lasteUpdateTime; |
|
|
|
|
if (space < this.c_frameSpace) { |
|
|
|
|