当前位置:   article > 正文

Unity在游戏中鼠标点击选中GameObject物体并打印其名字_unity 选中物体显示信息

unity 选中物体显示信息

一般都是用RaycastHit从鼠标位置发射一条射线到GameObject进行选中。

前提:被选的GameObject要加上Collider,否则无法选中。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Controller : MonoBehaviour
{

    // Use this for initialization
    void Start()
    {

    }

    // Update is called once per frame
    void Update()
    {
        if (Input.GetMouseButtonDown(0))
        {
            Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
            RaycastHit hit;
            if (Physics.Raycast(ray, out hit))
            {
                GameObject go = hit.collider.gameObject;    //获得选中物体
                string goName = go.name;    //获得选中物体的名字,使用hit.transform.name也可以
                print(goName);
            }
        }
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

参考资料:

  1. unity3d点击屏幕选中物体
  2. How can I get an object reference from a Raycast?
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/118344
推荐阅读
相关标签
  

闽ICP备14008679号