永远

永远

歌手:
时间:2022-06-10

永远-暴力香槟曲目列表

#
歌曲 歌手 时长
1
永远 SQ

03:16

永远-暴力香槟专辑介绍

public GameObject friendprefab;

void Start()

{

InvokeRepeating("Createfriend", 0.1f, 1f);

}

void Createfriend()

{

float x = 10.5f;

float y = Random.Range(-3f, 2.5f);

GameObject friend = Instantiate(friendprefab);

friend.transform.position = new Vector3(x, y, 0);

}