Interface IGuideOptions

pathPointurl creator里面生成出来的路径线url,参数是一个数组,支持添加多条路径线的url pathWidth 设置引导线的宽度,默认是1.5m avatar 设置角色 minDistance 设置最小显示距离,小于该距离完全显示 maxDistance 设置最大显示距离,大于该距离不显示 textureUrl 设置引导线的纹理,该参数需要传入纹理的url地址 flowSpeed 设置引导线的流动速度,默认是-1.0,正数为反方向流动,其绝对值越大速度越快 uvTile 设置引导线的箭头平铺值,表现出来是纹理的疏密程度,默认是0.2,其值越大速度越密 type AirWall为空气墙,NavigationPath为路径引导线

interface IGuideOptions {
    avatar: any;
    flowSpeed: number;
    maxDistance: number;
    minDistance: number;
    pathPointurl: string[];
    pathWidth: number;
    textureUrl: string;
    uvTile: number;
}

Properties

avatar: any
flowSpeed: number
maxDistance: number
minDistance: number
pathPointurl: string[]
pathWidth: number
textureUrl: string
uvTile: number

Generated using TypeDoc