Version: Unity 6.6 Alpha (6000.6)
LanguageEnglish
  • C#

RectTransform.SetLocalLeft

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void SetLocalLeft(float value, bool preserveSize);

Parameters

Parameter Description
value The target x coordinate for the left edge, in the parent's coordinate space.
preserveSize When true (default), the element translates so the left edge reaches value while width is unchanged. When false, only the left edge moves: the right edge stays fixed and sizeDelta is adjusted to match the new width.

Description

Moves the left edge of this RectTransform to the specified position in its parent's coordinate space.

When preserveSize is true, adjusts anchoredPosition so that GetLocalLeft returns value; the element's size (sizeDelta) and right edge are not affected. When preserveSize is false, the right edge remains at its current position and the width is resized to reach value.

Additional resources: GetLocalLeft, SetLocalRight.