unity开发中使用射线交互物体修改TextMashPro出现镜头抖动及解决

在制作一些类似生存游戏的时候,有时候可能会有光标所指处显示物体名称的需求

以下是相关代码

csharp 复制代码
using System;
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;

public class SelectionManager : MonoBehaviour
{
    public GameObject interaction_Info_UI;
    TextMeshProUGUI interaction_text;
    // Start is called before the first frame update
    private void Start()
    {
        interaction_text = interaction_Info_UI.GetComponent<TextMeshProUGUI>();
    }

    // Update is called once per frame
    void Update()
    {
        Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
        RaycastHit hit;
        if (Physics.Raycast(ray, out hit))
        {
            var selectionTransform = hit.transform;

            if (selectionTransform.GetComponent<InteractableObject>())
            {
                interaction_text.text = selectionTransform.GetComponent<InteractableObject>().GetItemName();
                interaction_Info_UI.SetActive(true);
            }
            else
            {
                interaction_Info_UI.SetActive(false);
            }
        }
    }
}

运行游戏的时候偶然发现一个bug,当屏幕中心光标指向相关物体的时候,会发生屏幕抖动和瞬移的情况。

自己摸索了一个解决方法

1.找到你的摄像头

2.在inspector中,修改Far为任意其他值,比如默认1000设为2000,会发现游戏运行后不会出现抖动情况,而再将2000修改为1000后,游戏依旧可以正常运行。

注:在修改TextMeshPro任意设置后,依旧会出现镜头抖动的bug,再按照原来方法处理就可以。

相关推荐
Dr.long3 分钟前
unity老猿随笔
unity·游戏引擎
虾球xz32 分钟前
游戏引擎学习第11天
stm32·学习·游戏引擎
许许前进1 小时前
问题本记录(2):Unity+机器学习
unity·游戏引擎
虾球xz2 小时前
游戏引擎学习第10天
学习·游戏引擎
_乐无12 小时前
Unity 性能优化方案
unity·性能优化·游戏引擎
明明明h15 小时前
Unity Assembly Definition & Assembly Definition Reference
unity·游戏引擎
龙中舞王15 小时前
Unity学习笔记(4):人物和基本组件
笔记·学习·unity
无敌最俊朗@19 小时前
unity3d————协程原理讲解
开发语言·学习·unity·c#·游戏引擎
夜色。19 小时前
Unity6 + Android Studio 开发环境搭建【备忘】
android·unity·android studio
随遇而安622&5081 天前
分布式微服务项目,同一个controller方法间的转发导致cookie丢失,报错null pointer异常
分布式·微服务·架构·bug