Version: 2018.1
public Vector3 CellToLocalInterpolated (Vector3 cellPosition);

パラメーター

cellPositionInterpolated cell position to convert.

戻り値

Vector3 Local position of the cell position.

説明

Converts an interpolated cell position in floats to local position space.

Returns the local position in floats.

// Snap the GameObject to parent GridLayout center of cell
using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { GridLayout gridLayout = transform.parent.GetComponent<GridLayout>(); Vector3Int cellPosition = gridLayout.LocalToCell(transform.localPosition); transform.localPosition = gridLayout.CellToLocalInterpolated(cellPosition + new Vector3(.5f, .5f, .5f)); } }