Version: 2018.1
public Vector3 CellToWorld (Vector3Int cellPosition);

パラメーター

cellPositionCell position to convert.

戻り値

Vector3 World position of the cell position.

説明

Converts a cell position to world position space.

// Snap the GameObject to parent GridLayout
using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { GridLayout gridLayout = transform.parent.GetComponentInParent<GridLayout>(); Vector3Int cellPosition = gridLayout.WorldToCell(transform.position); transform.position = gridLayout.CellToWorld(cellPosition); } }