当前位置:   article > 正文

Unity 十五 UGUI RectTransform 脚本控制_unity3d ugui 设置recttransform 旋转代码

unity3d ugui 设置recttransform 旋转代码

在Unity里可以 Transform 控制3d 物体的移动缩放旋转,那么在 Canvas 里如何设置 transform 呢,可以用 RectTransform,它继承于 Transform。

//    RectTransform     a = this.transform.GetComponent<RectTransform>();//通过获取组件,获取 RectTransform
  RectTransform      a = this.transform as RectTransform;//通过 as 关键字获得 RectTransform
  • 1
  • 2

移动元素的位置:不能直接用 a.position = new Vector3(),这样也可以设置,但是不知道设置到什么地方去了。要用下面的 UI 特定的参数设置。

       a.anchoredPosition=new Vector2(10,10);//设置 UI 元素的位置
       a.anchoredPosition3D = new Vector3(10,10,10);//设置 UI 元素的位置,上面是2d,这个是3d 的。
  • 1
  • 2

获取 UI 元素的属性,通过 rect来读取。这个参数下是只读参数,不能 set

 Debug.Log("宽度:"+a.rect.width) ;
       Debug.Log("高度:"+a.rect.height) ;
       Debug.Log("方位:底部"+a.rect.bottom+" right:"+a.rect.right); 
  • 1
  • 2
  • 3

设置UI 的元素的宽高:
在这里插入图片描述

//        a.SetSizeWithCurrentAnchors(RectTransform.Axis.Horizontal,300);//设置宽度
//        a.SetSizeWithCurrentAnchors(RectTransform.Axis.Vertical,100);//设置高度
  • 1
  • 2

下面是我测试的代码。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ButtonTransform : MonoBehaviour
{
    // Start is called before the first frame update
    private RectTransform a;
    void Start()
    {
//         a = this.transform.GetComponent<RectTransform>();//获取
        a = this.transform as RectTransform;
    }

    // Update is called once per frame
    void Update()
    { 
//        transform.Translate(Vector3.right*Time.deltaTime*50) ;
//        a.anchoredPosition=new Vector2(10,10);
//        a.anchoredPosition3D = new Vector3(10,10,10);
       Debug.Log("宽度:"+a.rect.width) ;
       Debug.Log("高度:"+a.rect.height) ;
       Debug.Log("方位:底部"+a.rect.bottom+" right:"+a.rect.right); 
       Debug.Log(a.sizeDelta);  
//        a.SetSizeWithCurrentAnchors(RectTransform.Axis.Horizontal,300);
//        a.SetSizeWithCurrentAnchors(RectTransform.Axis.Vertical,100);

    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/771979
推荐阅读
相关标签
  

闽ICP备14008679号