Unity: 一个简单的扇形布局组件

UGUI默认提供了横竖布局组件, 但有时候还需要一种扇形布局的组件,如下图:

image.png

方法1:
使用HorizontalLayoutGroup,根据规则(三角函数)用代码修改每个item的Y.

方法2:
使用C#写一个圆形(包含扇形)布局组件,以便扩展更多,代码如下:

using UnityEngine;
using UnityEngine.UI;

/// <summary>扇形布局组件</summary>
/// <author>Danny Yan</author>
[AddComponentMenu("Layout/Circle Layout Group", 150)]
public class CircleLayoutGroup : LayoutGroup
{
    public enum LayoutMode
    {
        /// <summar>平均分布</summary>
        Hypodispersion = 0,
        /// <summar>扇形分布</summary>
        Sector = 1,
    }

    [Header("分布模式: Hypodispersion(圆形平均分布) Sector(扇形分布)")]
    public LayoutMode mode = LayoutMode.Hypodispersion;

    [Header("半径")]
    public float radius = 0;

    [Header("起始角度")]
    public float initAngle = 0;

    [Header("是否保持弧度值不变")]
    public bool keepRadLen = false;
    [Header("弧度保持不变的值(keepRadLen为true时有效)")]
    public float keepRadLenVal = 0f;
    [Header("扇形分布范围")]
    public float sectorAngle = 0;
    [Header("扇形分布时且keepRadLen为false时,是否中间对齐到扇形中心,否则两端对齐")]
    public bool sectorAlignCenter = false;
    [Header("扇形分布且sectorAlignCenter为false时,是否为逆时针")]
    public bool sectorClockwise = true;

    // public float fDistance;
    // [Range(0f, 360f)]
    // public float MinAngle, MaxAngle, StartAngle;
    protected override void OnEnable()
    {
        base.OnEnable();
        CalculateRadial();
    }
    public override void SetLayoutHorizontal()
    {
        // Util.Print("SetLayoutHorizontal");
        CalculateRadial();
    }
    public override void SetLayoutVertical()
    {
        // Util.Print("SetLayoutVertical");
        CalculateRadial();
    }
    public override void CalculateLayoutInputHorizontal()
    {
        base.CalculateLayoutInputHorizontal();
        // Util.Print("CalculateLayoutInputHorizontal");
        CalculateRadial();
    }
    public override void CalculateLayoutInputVertical()
    {
        // Util.Print("CalculateLayoutInputVertical");
        CalculateRadial();
    }
#if UNITY_EDITOR
    protected override void OnValidate()
    {
        base.OnValidate();
        CalculateRadial();
    }
#endif

    protected void CalculateRadial()
    {
        this.m_Tracker.Clear();
        if (transform.childCount == 0)
            return;

        if (this.mode == LayoutMode.Hypodispersion)
        {
            this.Hypodispersion();
        }
        else if (this.mode == LayoutMode.Sector)
        {
            this.Sector();
        }
    }

    /// 平均分布
    private void Hypodispersion()
    {
        // rectChildren来自父类,在CalculateLayoutInputHorizontal()中进行的非active和IgonreLayout的子节点剔除
        if (this.rectChildren.Count <= 0) return;

        float perRad = 2 * Mathf.PI / rectChildren.Count;
        // float perAngle = 360 / rectChildren.Count;
        float initRad = this.initAngle * Mathf.Deg2Rad;

        this.SetLayout(initRad, perRad);
    }

    /// 扇形分布
    private void Sector()
    {
        if (rectChildren.Count <= 0) return;

        float perRad = 0;
        float initRad = this.initAngle * Mathf.Deg2Rad;
        // 扇形弧度
        var sectorRad = this.sectorAngle * Mathf.Deg2Rad;

        if (this.keepRadLen)
        {
            // 弧长公式为: L = (angle * PI / 180) * radius = rad * radius, 要保持弧长不变,则需要改变rad即可, rad = L / radius
            perRad = keepRadLenVal / this.radius;
            if (sectorAlignCenter)
            {
                // 将initRad重置到sectorRad中线上
                initRad += (sectorClockwise ? sectorRad * .5f : -sectorRad * .5f);
                if (rectChildren.Count > 1)
                {
                    // 根据数量重置initRad
                    float _radOff = perRad * ((rectChildren.Count - 1) * 0.5f);
                    initRad -= (sectorClockwise ? _radOff : -_radOff);
                }
            }
            else
            {
                perRad = keepRadLenVal / this.radius;
            }
        }
        else
        {
            // 居中对齐到扇形中心
            if (sectorAlignCenter)
            {
                perRad = sectorRad / (rectChildren.Count + 1);
                initRad += sectorClockwise ? perRad : -perRad;
            }
            else
            {
                perRad = rectChildren.Count == 1 ? 0 : sectorRad / (rectChildren.Count - 1);
            }
        }

        if (!sectorClockwise)
        {
            perRad *= -1;
        }

        this.SetLayout(initRad, perRad);
    }

    private void SetLayout(float initRad, float perRad)
    {
        // 计算最佳大小
        float totalMin = 0;
        float totalPreferred = 0;
        float totalFlexible = 0;

        float minX = float.MaxValue;
        float maxX = float.MinValue;
        float minY = float.MaxValue;
        float maxY = float.MinValue;
        for (int i = 0; i < rectChildren.Count; i++)
        {
            var child = rectChildren[i];

            //禁用子节点recttransform相关属性
            m_Tracker.Add(this, child,
            DrivenTransformProperties.Anchors |
            DrivenTransformProperties.AnchoredPosition |
            DrivenTransformProperties.Pivot);

            var size = child.rect.size;
            child.pivot = new Vector2(0.5f, 0.5f);
            child.anchorMin = new Vector2(0.5f, 0.5f);
            child.anchorMax = new Vector2(0.5f, 0.5f);
            child.SetSizeWithCurrentAnchors(RectTransform.Axis.Horizontal, size.x);
            child.SetSizeWithCurrentAnchors(RectTransform.Axis.Vertical, size.y);

            // child.SetInsetAndSizeFromParentEdge(RectTransform.Edge.Left, -pSize.x*.5f, size.x);
            // child.SetInsetAndSizeFromParentEdge(RectTransform.Edge.Top, -pSize.y*.5f, size.y);
            // child.SetInsetAndSizeFromParentEdge(RectTransform.Edge.Left | RectTransform.Edge.Right, size.x*.5f, size.x);
            // child.SetInsetAndSizeFromParentEdge(RectTransform.Edge.Top | RectTransform.Edge.Bottom, size.y*.5f, size.y);

            // float min, preferred, flexible;
            // GetChildSizes(child, 0, out min, out preferred, out flexible);
            // size.x = LayoutUtility.GetMinSize(child, 0);
            // size.y = LayoutUtility.GetMinSize(child, 1);

            size *= 0.5f * child.localScale;
            Vector3 vPos = child.localPosition;
            var rad = initRad + perRad * i;
            vPos.x = this.radius * Mathf.Cos(rad);
            vPos.y = this.radius * Mathf.Sin(rad);
            child.localPosition = vPos;

            var left = vPos.x - size.x;
            if (left < minX) minX = left;
            var right = vPos.x + size.x;
            if (right > maxX) maxX = right;

            var bottom = vPos.y - size.y;
            if (bottom < minY) minY = bottom;
            var top = vPos.y + size.y;
            if (top > maxY) maxY = top;
        }
        
        // 此处宽高计算并不是很精确
        var w = Mathf.Abs(maxX - minX);
        var h = Mathf.Abs(maxY - minY);
        totalMin = this.radius;
        totalPreferred = w;
        if (this.mode == LayoutMode.Sector)
        {
            // totalPreferred += radius;
        }
        SetLayoutInputForAxis(totalMin, totalPreferred, totalFlexible, 0);
        totalPreferred = h;
        if (this.mode == LayoutMode.Sector)
        {
            // totalPreferred += radius;
        }
        SetLayoutInputForAxis(totalMin, totalPreferred, totalFlexible, 1);
    }
}

说明:

  1. 继承自LayoutGroup,在SetLayoutXX()和CalculateLayoutInputXX()方法中直接调用CalculateRadial()进行计算,Layout提供的Padding和Child Alignment不生效;
  2. 提供圆形布局和扇形布局2种模式,圆形布局较为简单,扇形布局提供更多的效果方式,半径和起始角度是通用的;
  3. 圆形布局只能平均分布,效果图如下:


    image.png
  4. 扇形模式下必须设置分布角度(sectorAngle值),同时分为普通扇形平均分布和强制弧度长度不变分布:

扇形模式下的效果对比:

普通平均分布:

image.png

image.png

改变半径,间距变大

强制保持弧度长度:

image.png

image.png

改变半径,item之间的弧度长度不变

转载请注明出处: https://www.jianshu.com/p/d02395b6689c

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342