Interface IConductToOptions

interface IConductToOptions {
    endCallback?: IFunction;
    fb: number;
    lookAtOptions?: ILookAtOptions & {
        target?: IPoint;
    };
    lr: number;
    npcRotation?: IRotation;
    target: IPoint;
}

Properties

endCallback?: IFunction

到达之后的callback

fb: number

前后偏移量

lookAtOptions?: ILookAtOptions & {
    target?: IPoint;
}

设置到达之后镜头转向参数,可传入target参数设置lookAt目标point

Type declaration

  • Optional target?: IPoint
lr: number

左右偏移量

npcRotation?: IRotation

设置到达之后npc的rotation

target: IPoint

目标点位

Generated using TypeDoc