码迷,mamicode.com
首页 > 其他好文 > 详细

小技巧总结

时间:2016-11-21 18:57:29      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:blog   方法   string   宽度   getch   技巧   length   strong   提前   

Text篇

挂载ContentSizeFitter   可以动态改变Text框大小

提前获取文本宽度方法:

public int GetTextLength(Text text, string str)
    {
        Font font = text.font;
        int fontsize = text.fontSize;
        font.RequestCharactersInTexture(str, fontsize, text.fontStyle);
        CharacterInfo characterInfo;
        int width = 0;
        for(int i = 0; i < str.Length; i++){
            font.GetCharacterInfo(str[i], out characterInfo, fontsize);
            width += characterInfo.advance;
        }
        return width;
    }

 

小技巧总结

标签:blog   方法   string   宽度   getch   技巧   length   strong   提前   

原文地址:http://www.cnblogs.com/zhenlong/p/6086362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!