欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

uniy 重复定时器InvokeRepeating()

程序员文章站 2022-03-02 11:48:48
...
void Start()
{
   //0秒后调用getdistance() 函数(检测距离),之后每0.2秒调用一次
    InvokeRepeating("getdistance",0,0.2f);
}

void getdistance()
{
    distance = Vector3.Distance(teanscriptManager.intance.playerTransform.position, this.transform.position);

}
相关标签: unity