CellToLocal(Vector3Int)
Converts a cell position to local position space.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.GridModule
public Vector3 CellToLocal(Vector3Int cellPosition)
Parameters
Cell position to convert.
Returns
Type | Description |
|---|---|
| Vector3 | Local position of the cell position. |
Examples
// Snap the GameObject to parent GridLayoutusing UnityEngine;public class ExampleClass : MonoBehaviour{ void Start() { GridLayout gridLayout = transform.parent.GetComponent<GridLayout>(); Vector3Int cellPosition = gridLayout.LocalToCell(transform.localPosition); transform.localPosition = gridLayout.CellToLocal(cellPosition); }}