• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
~Joke_crazy
爱生活,爱拉芳!
   首页    新随笔       管理     

unity UGUI UI跟随

实现2dUI跟随游戏中角色的移动(应用于玩家名称,血条,称号)

using UnityEngine;

public class UI_Follow : MonoBehaviour
{
    public Camera m_camera;
    public Transform m_target;
    public RectTransform m_ui;
    
    private Vector3 position_sp;

    private void Awake()
    {
        if (m_camera == null)
        {
            m_camera = Camera.main;
        }
        if (m_ui == null && transform is RectTransform)
        {
            m_ui = (RectTransform)transform;
        }
    }

    private void LateUpdate()
    {
        position_sp = m_camera.WorldToScreenPoint(m_target.position);
        Format_Position(ref position_sp);
        m_ui.localPosition = position_sp;
    }

    private void Format_Position(ref Vector3 pos)
    {
        pos.x -= Content.screen_width_half;
        pos.y -= Content.screen_height_half;
        pos.x *= Content.screen_width_ratio;
        pos.y *= Content.screen_height_ratio;
    }
}
View Code
using UnityEngine;

public class Content
{
    //当前UI分辨率
    public const float UI_Width = 1366f;
    public const float UI_Height = 768f;

    //手机屏幕大小的二分之一
    public static float screen_width_half = Screen.width / 2;
    public static float screen_height_half = Screen.height / 2;

    //手机屏幕与UI的比率
    public static float screen_width_ratio = UI_Width / Screen.width;
    public static float screen_height_ratio = UI_Height / Screen.height;
}
View Code

需要根据手机分辨率与UI进行适配

另一种解决方案:

每个3D物体身上都挂载一个Canvas,通过调整UI角度实现

posted @ 2018-12-03 11:07  ~Joke_crazy  阅读(2694)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3