finished
是 Yuka.js 路径类 Path
的一个方法,用于在路径中最后一个方式的行动完成时进行回调。
finished( callback: Function ): this
callback
: (required) 完成时的回调函数。返回 this
,以便链式调用。
import { Path } from 'yuka';
const path = new Path();
path
.add( new Vector3( 0, 0, 0 ) )
.add( new Vector3( 5, 0, 0 ) )
.finished( () => {
console.log( 'Finished moving along the path.' );
} );
finished
仅在到达路径中最后一个位置后执行一次。loop
方法。followPath
方法的对象有效。