Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Transform.localPosition

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
public var localPosition: Vector3;
public Vector3 localPosition;

Описание

Position of the transform relative to the parent transform.

If the transform has no parent, it is the same as Transform.position.

	// Move the object to the same position as the parent:
	transform.localPosition = Vector3(0, 0, 0);
	
	// Get the y component of the position relative to the parent
	// and print it to the Console
	print(transform.localPosition.y);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { transform.localPosition = new Vector3(0, 0, 0); print(transform.localPosition.y); } }

Note that the parent transform's world rotation and scale are applied to the local position when calculating the world position. This means that while 1 unit in Transform.position is always 1 unit, 1 unit in Transform.localPosition will get scaled by the scale of all ancestors.