版本:Unity 6 (6000.0)
语言英语
  • C#

GridLayout.LocalToCellInterpolated

提出更改建议

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读来自用户的所有建议更改,并会在适当的情况下进行更新。

关闭

提交失败

出于某种原因,您的建议更改无法提交。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public Vector3 LocalToCellInterpolated(Vector3 localPosition);

参数

localPosition 要转换的本地位置。

返回

Vector3 本地位置的插补单元格位置。

描述

将本地位置转换为单元格位置。

返回浮点表示的插补单元格位置,而不是确切的单元格位置。

// Move GameObject left by 1/4th of cell width of parent GridLayout
using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { GridLayout gridLayout = transform.parent.GetComponent<GridLayout>(); Vector3 cellPosition = gridLayout.LocalToCellInterpolated(transform.localPosition); cellPosition += Vector3.left * 0.25f; transform.localPosition = gridLayout.CellToLocalInterpolated(cellPosition); } }