RectTransformのTransformは読み取り専用
(アンカーを基準点として位置を決めているから)
RectTransformの持つ変数
anchoredPosition:アンカー基準点に対する RectTransform の相対的なピボットの位置
を動かせばよい。
test.cs
Vector2 v1 = new Vector2 (-50.3f, -5.45f);
GetComponent<RectTransform>().anchoredPosition = v1;
Go to list of users who liked
More than 5 years have passed since last update.
RectTransformのTransformは読み取り専用
(アンカーを基準点として位置を決めているから)
RectTransformの持つ変数
anchoredPosition:アンカー基準点に対する RectTransform の相対的なピボットの位置
を動かせばよい。
Vector2 v1 = new Vector2 (-50.3f, -5.45f);
GetComponent<RectTransform>().anchoredPosition = v1;
Register as a new user and use Qiita more conveniently
Go to list of users who liked