position | 网格单元格位置。 |
Vector3 转换到世界空间坐标的单元格中心。
获取网格单元格在世界空间中的逻辑中心坐标。
在矩形网格布局中,对 GridLayout.CellToWorld 的调用带有 Vector3Int 参数,返回一个 Vector3 坐标,该坐标表示单元格的左下角。这在数学上是正确的,但在例如将 GameObject 实例化到网格中时,您通常更喜欢单元格的中心。
// Snap the GameObject to parent Grid center of cell using UnityEngine;
public class ExampleClass : MonoBehaviour { void Start() { Grid grid = transform.parent.GetComponent<Grid>(); Vector3Int cellPosition = grid.WorldToCell(transform.position); transform.position = grid.GetCellCenterWorld(cellPosition); } }