Unity协程原理分析及总结
协程原理
通过
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public void Start()
{
Vector3[] iniWidePos;
iniWidePos = new Vector3[4];
iniWidePos[0].x = 0;
iniWidePos[0].y = 0;
iniWidePos[1].x = 0;
iniWidePos[1].y = Screen.height;
iniWidePos[2].x = Screen.width;
iniWidePos[2].y = Screen.height;
iniWidePos[3].x = Screen.width;
iniWidePos[3].y = 0;
for (int i = 0; i < iniWidePos.Length; i++)
{
Ray ray = Camera.main.ScreenPointToRay(iniWidePos[i]);
if (Physics.Raycast(ray, out var hit))
{
//Debug.DrawLine(ray.origin, hit.point, Color.red, intMaxValue);
iniWidePos[i] = hit.point;
}
}
}
本文由作者按照 CC BY 4.0 进行授权