Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

cellPosition

Cell position to convert.

Returns

Type

Description

Vector3Local 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); }}