Version: 2021.3

Tilemap.GetCellCenterWorld

切换到手册
public Vector3 GetCellCenterWorld (Vector3Int position);

参数

position 网格单元格位置。

返回

Vector3 变换为世界空间坐标的单元格中心。

描述

Get the logical center coordinate of a Grid cell in world space.

在矩形网格布局中,使用 Vector3Int 参数对 GridLayout.CellToWorld 进行的调用会返回表示单元格左下角的 Vector3 坐标。这在数学上是正确的,不过,像 GameObject 实例化为网格等情形,您可能会更希望获得单元格中心。

// Snap the GameObject to parent Tilemap center of cell
using UnityEngine;
using UnityEngine.Tilemaps;

public class ExampleClass : MonoBehaviour { void Start() { Tilemap tilemap = transform.parent.GetComponent<Tilemap>(); Vector3Int cellPosition = tilemap.WorldToCell(transform.position); transform.position = tilemap.GetCellCenterWorld(cellPosition); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961