Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

GridLayout.WorldToCell

public Vector3Int WorldToCell(Vector3 worldPosition);

Parameters

worldPosition World Position to convert.

Returns

Vector3Int Cell position of the world position.

Description

Converts a world position to cell position.

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

Did you find this page useful? Please give it a rating: