UGUI——Content Size Fitter

作者:追风剑情 发布于:2019-1-15 10:52 分类:GUI

官方文档 https://docs.unity3d.com/Manual/script-ContentSizeFitter.html

1111.png

属性说明
Horizontal Fit: 宽度约束方式
  ● Unconstrained: 不执行任何调整
  ● Min Size: 只调整组件的最小尺寸(MinWidth)
  ● Preferred Size: 根据内容调整尺寸(Width)
Vertical Fit: 高度约束方式
  ● Unconstrained: 不执行任何调整
  ● Min Size: 只调整组件的最小尺寸(MinHeight)
  ● Preferred Size: 根据内容调整尺寸(Width)

Text挂上Content Size Fitter组件后,Width与Height将不能手动设置。

1111.png


一个关联RectTransform Size的类

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. /// <summary>
  5. /// 关联size
  6. /// </summary>
  7. public class RelevanceSizeFiter : MonoBehaviour
  8. {
  9. //要关联的RectTransform
  10. public RectTransform relevance;
  11. //关联宽度
  12. public bool horizontalFit = false;
  13. //关联高度
  14. public bool verticalFit = false;
  15. //更新方法
  16. public UpdateMethod updateMethod;
  17.  
  18. private RectTransform rectTransform;
  19.  
  20. public enum UpdateMethod
  21. {
  22. Awake,
  23. Start,
  24. Update,
  25. LateUpdate,
  26. }
  27.  
  28. private void Awake()
  29. {
  30. rectTransform = this.GetComponent<RectTransform>();
  31. if (updateMethod == UpdateMethod.Awake)
  32. DoRelevance();
  33. }
  34.  
  35. private void Start()
  36. {
  37. if (updateMethod == UpdateMethod.Start)
  38. DoRelevance();
  39. }
  40.  
  41. private void Update()
  42. {
  43. if (updateMethod == UpdateMethod.Update)
  44. DoRelevance();
  45. }
  46.  
  47. private void LateUpdate()
  48. {
  49. if (updateMethod == UpdateMethod.LateUpdate)
  50. DoRelevance();
  51. }
  52.  
  53. private void DoRelevance()
  54. {
  55. if (relevance == null)
  56. return;
  57. if (horizontalFit)
  58. UGUITool.SetRectTransformWidth(rectTransform, relevance);
  59. if (verticalFit)
  60. UGUITool.SetRectTransformHeight(rectTransform, relevance);
  61. }
  62. }


标签: UGUI

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号