详情看 http://note.youdao.com/noteshare?id=ec901d56341207052b2d19233b5ddba3

这里仅仅贴出文字,完整内容请看上面链接。

有这样一个需求:让LabelA停靠在LabelB的某个位置,同时要适应labelA的变化的长度。
 
1. LabelA和LabelB的OverFlow方式是ResizeFreely,使Label的尺寸能够变化。
2. 根据公式得到labelB的位置:
labelB.anchoredposition
= labelA.anchoredposition - labelA.pivot*labelA.size (此时指向labelA的左下角位置)
+ harborAnchor*labelA.size (harborAnchor是归一化的位置值,(1,1)labelA的右上角)
+ AbsoluteOffset(绝对偏移)
3. 需要设置labelB的pivot,例如如果想要让labelB如上图所示停靠在labelA的底线上且是右侧且有一个绝对偏移值(10,0),则将labelB的widget的pivot设置为左下。将harborAnchor设置为(1,0)。
 
▼代码开始
 
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 
 
public class UILabelDock: MonoBehaviour
{
    public const string Specification = "将某UI停靠在某个Label(称为HarborLabel)的HarborAnchor处,这两个UI需要在同一个GameObject下";
 
    public UILabel m_HarborLabel = null;
 
    [Tooltip("设置港口Widget的锚点,港口Widget内容区域的左下角是(0,0),右上角是(1,1)")]
    public Vector2 m_HarborAnchor = new Vector2(1, 0.5f);
 
    RectTransform m_MyRectTransform = null;
    RectTransform m_HarborTransform = null;
    UIWidget m_HarborWidget = null;
 
    [Tooltip("绝对偏移值")]
    public Vector2 m_AbsoluteOffset = new Vector2(0, 0);
 
    private void Awake()
    {
        m_MyRectTransform = GetComponent<RectTransform>();
        m_HarborTransform = m_HarborLabel.GetComponent<RectTransform>();
        m_HarborWidget = m_HarborLabel.GetComponent<UIWidget>();
    }
   
    public void RefreshDock()
    {
        Awake();
        if (m_HarborLabel == null || m_MyRectTransform == null || m_HarborWidget == null || m_HarborTransform)
        {
            Debug.LogError("LabelDock Error");
            return;
        }
 
        //需要确保
        m_MyRectTransform.anchorMax = m_HarborTransform.anchorMax;
        m_MyRectTransform.anchorMin = m_HarborTransform.anchorMin;
        m_MyRectTransform.offsetMax = m_HarborTransform.offsetMax;
        m_MyRectTransform.offsetMin = m_HarborTransform.offsetMin;
        m_MyRectTransform.pivot = m_HarborTransform.pivot;
        m_MyRectTransform.sizeDelta = m_HarborTransform.sizeDelta;
 
        var normalizedOffset = new Vector2(0, 0);
        switch (m_HarborWidget.pivot)
        {
            case UIWidget.Pivot.Bottom:
                {
                    normalizedOffset = new Vector2(0.5f, 0);
                    break;
                }
            case UIWidget.Pivot.BottomLeft:
                {
                    normalizedOffset = new Vector2(0, 0);
                    break;
                }
            case UIWidget.Pivot.BottomRight:
                {
                    normalizedOffset = new Vector2(1, 0);
                    break;
                }
            case UIWidget.Pivot.Center:
                {
                    normalizedOffset = new Vector2(.5f, .5f);
                    break;
                }
            case UIWidget.Pivot.Left:
                {
                    normalizedOffset = new Vector2(0, .5f);
                    break;
                }
            case UIWidget.Pivot.Right:
                {
                    normalizedOffset = new Vector2(1, .5f);
                    break;
                }
            case UIWidget.Pivot.Top:
                {
                    normalizedOffset = new Vector2(.5f, 1);
                    break;
                }
            case UIWidget.Pivot.TopLeft:
                {
                    normalizedOffset = new Vector2(0, 1);
                    break;
                }
            case UIWidget.Pivot.TopRight:
                {
                    normalizedOffset = new Vector2(1, 1);
                    break;
                }
        }
 
        normalizedOffset = m_HarborAnchor - normalizedOffset;
        m_MyRectTransform.anchoredPosition = m_HarborTransform.anchoredPosition + new Vector2(normalizedOffset.x * m_HarborLabel.printedSize.x, normalizedOffset.y * m_HarborLabel.printedSize.y) + m_AbsoluteOffset;
    }
}
 
 
▲代码结束
 

NGUI中LabelA停靠LabelB的方法的更多相关文章

  1. NGUI中Button与原生2D精灵的混合使用

    一些废话 每一篇的首段都是这个“一些废话”,原因是我太能逼逼了,不逼逼一些废话我就觉得难受.这是我第四篇关于Unity的博文,前两篇还是去年写的,“从一点儿不会开始”系列,类似教程和学习笔记的博文,这 ...

  2. Unity3D在NGUI中使用mask

    过程是这样的:最近一直想做一个头像的mask效果,后来发现原来unity的mask需要用shader来写,网上找了不少资料,也能实现,不过大多数都是用render texture作为相机投影的text ...

  3. (转)NGUI中深度depth和z轴关系

    先列出转载链接: http://game.ceeger.com/forum/read.php?tid=8917 转载原文: 问题源自一个帖子,因为上传的图比较多,就另开了这个贴写下自己的试验结果,原帖 ...

  4. NGUI制作字体的三种方法

    主要参考两篇博文: (1).NGUI制作字体的三种方法 (2).使用位图字体工具BMFont从图片生成自定义字体 1.BMFont下载地址 http://www.angelcode.com/produ ...

  5. (转)ORA-12514 TNS 监听程序当前无法识别连接描述符中请求服务 的解决方法

    早上同事用PL/SQL连接虚拟机中的Oracle数据库,发现又报了"ORA-12514 TNS 监听程序当前无法识别连接描述符中请求服务"错误,帮其解决后,发现很多人遇到过这样的问 ...

  6. 解析Jquery取得iframe中元素的几种方法

    iframe在复合文档中经常用到,利用jquery操作iframe可以大幅提高效率,这里收集一些基本操作,需要的朋友可以参考下   DOM方法:父窗口操作IFRAME:window.frames[&q ...

  7. 在html中添加script脚本的方法和注意事项

    在html中添加script脚本有两种方法,直接将javascript代码添加到html中与添加外部js文件,这两种方法都比较常用,大家可以根据自己需要自由选择 在html中添加<script& ...

  8. MVC中使用Entity Framework 基于方法的查询学习笔记 (二)

    解释,不解释: 紧接上文,我们在Visual Studio2012中看到系统为我们自动创建的视图(View)文件Index.cshtml中,开头有如下这句话: @model IEnumerable&l ...

  9. ORA-01652:无法通过128(在表空间temp中)扩展temp段 解决方法

    ORA-01652:无法通过128(在表空间temp中)扩展temp段 解决方法 (2016-10-21 16:49:53)   今天在做一个查询的时候,报了一个"ORA-01652无法通过 ...

随机推荐

  1. Bootstrap modal 多弹窗之叠加关闭阴影遮罩问题的解决方法

    这里也会遇到一次性关闭所有modal引起阴影遮罩的问题,也就是所有modal都关闭了,但是主页面仍然被阴影遮罩. 这个问题从哪来的,是因为modal叠加,我们点击窗口之外的空白部分,一次性关闭所有mo ...

  2. 动态PIVOT行转列

    id name subject score remark1 l math 86 2 l eng 68 3 l phy 88 4 z chn 99 5 z math 92 6 z com 98 7 z ...

  3. Git 配置ssh key的步骤

    First start by setting up your own public/private key pair set. This can use either DSA or RSA, so b ...

  4. asp.net button浏览器端事件和服务器端事件

    OnClientClick:触发浏览器端的响应,OnClick触发服务器端响应; 在服务器aspx.cs脚本中设置按钮属性: this.btnTest.Attributes["OnClick ...

  5. 使用treemap 遍历map参数

    遍历格式 XXX=123&XXX=456.....参数为map treemap是一个有序的key-value集合,它是通过红黑树实现的 TreeMap<String, String> ...

  6. select2切换事件如何生效

    1.问题背景 利用select2生成可搜索下拉框,并且绑定切换事件:但是直接绑定change事件,发现不起作用 2.问题原因 <!DOCTYPE html> <html> &l ...

  7. OPEN(SAP) UI5 学习入门系列之一:扫盲与热身(上)

    什么是SAP Fiori? 了解SAP UI5必须要从SAP Fiori开始,两者概念经常被混淆,而两者也确实有着非常紧密的关系. 用过SAP的同学们都对SAP的传统的界面(SAP GUI)表示“呵呵 ...

  8. BGP选路原则

    bgp选路原则 1 最高有weight优先,默认为0(思科特有,选大的) 2 本地优先级高的优先(只可以在IBGP邻居之间传递) 3 起源本路由器上的路由(network.aggregate-addr ...

  9. swift 定义枚举和结构体 及使用

    //定义枚举 enum MapDirection { case North case South case East case West func simpleDescription() -> ...

  10. 用两个stack实现一个队列

    class Queue { stack<int> input, output; public: void push(int x) { input.push(x); } void pop(v ...