|
@@ -4,18 +4,16 @@ export const FlyGLTFClass = {
|
|
|
constructor(options){
|
|
|
this.webgl = options.webgl;
|
|
|
this.view = options.view;
|
|
|
- this.mixer = null;
|
|
|
- this.airCraftMixer = null;
|
|
|
- this.clock = null;
|
|
|
- this.airCraftClock = null;
|
|
|
+ this.mixer = options.mixer;
|
|
|
+ this.airCraftMixer = options.airCraftMixer;
|
|
|
+ this.clock = options.clock;
|
|
|
+ this.airCraftClock = options.airCraftClock;
|
|
|
this.path = options.path; //路径点
|
|
|
- this.pathProgress = 0; //路径速度
|
|
|
+ this.pathProgress = options.pathProgress; //路径速度
|
|
|
this.speed = options.speed; //飞行速度
|
|
|
- this.pathCurve = null; //路径曲线
|
|
|
- this.targetObject = null; //路径飞行的目标对象
|
|
|
- this.gridMeshes = []; //用于存储路径周边的网格
|
|
|
- this._camera = null;
|
|
|
- this.gridSize = options.gridSize || 100;
|
|
|
+ this.pathCurve = options.pathCurve; //路径曲线
|
|
|
+ this.targetObject = options.targetObject; //路径飞行的目标对象
|
|
|
+ this._camera = options._camera;
|
|
|
},
|
|
|
initialize(){
|
|
|
this.mixer = new THREE.AnimationMixer();
|
|
@@ -126,16 +124,22 @@ export const FlyGLTFClass = {
|
|
|
}
|
|
|
|
|
|
if (this.pathCurve && this.targetObject) {
|
|
|
+ debugger
|
|
|
this.pathProgress += this.speed;
|
|
|
if (this.pathProgress > 1) this.pathProgress = 0;
|
|
|
|
|
|
- const position = this.pathCurve.getPointAt(this.pathProgress);
|
|
|
- const tangent = this.pathCurve.getTangentAt(this.pathProgress);
|
|
|
+ try{
|
|
|
+ const position = this.pathCurve.getPointAt(this.pathProgress);
|
|
|
+ const tangent = this.pathCurve.getTangentAt(this.pathProgress);
|
|
|
+ this.targetObject.position.copy(position);
|
|
|
+ this.targetObject.quaternion.setFromUnitVectors(
|
|
|
+ new THREE.Vector3(0, 0, 1), tangent
|
|
|
+ );
|
|
|
+ }catch(e){
|
|
|
+ console.log("this.pathProgress",this.pathProgress)
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
- this.targetObject.position.copy(position);
|
|
|
- this.targetObject.quaternion.setFromUnitVectors(
|
|
|
- new THREE.Vector3(0, 0, 1), tangent
|
|
|
- );
|
|
|
|
|
|
this.targetObject.rotation.z = -Math.PI/2;
|
|
|
}
|