91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity怎么實現鼠標或者手指點擊模型播放動畫

發布時間:2021-10-15 17:09:14 來源:億速云 閱讀:199 作者:柒染 欄目:編程語言

Unity怎么實現鼠標或者手指點擊模型播放動畫,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

using UnityEngine;using System.Collections; public class ClickPlayAnimation : MonoBehaviour {  /// <summary>  /// 實現功能為點擊模型播放動畫  /// 使用方法,給模型添加碰撞,添加腳本  /// </summary>    bool isPlayAnim = false; // Use this for initialization void Start () {  }  // Update is called once per frame void Update () {    //animation.Play();    if (Application.platform == RuntimePlatform.IPhonePlayer || Application.platform == RuntimePlatform.Android)    {       foreach (Touch touch in Input.touches)      {        if (Input.touchCount > 0 && Input.GetTouch(0).phase == TouchPhase.Began || Input.GetTouch(0).phase == TouchPhase.Moved)        {          Ray ray = Camera.main.ScreenPointToRay(new Vector3(touch.position.x, touch.position.y, 0));          RaycastHit hit;           if (Physics.Raycast(ray, out hit))          {            // Debug.DrawLine(ray.origin, hit.point);            if (hit.collider.gameObject.name == gameObject.name)            {              isPlayAnim = true;              print("123");            }          }        }      }    }    else     {      if (Input.GetMouseButtonDown(0))      {        Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);        RaycastHit hit;         if (Physics.Raycast(ray, out hit))        {          Debug.DrawLine(ray.origin, hit.point);          //print(hit.collider.gameObject.name);           //curObject = hit.collider.gameObject;          if (hit.collider.gameObject.name == gameObject.name)          {            isPlayAnim = true;            print("123");          }          // 顯示當前選中對象的名稱         // print(hit.collider.gameObject);        }       }    }        if(isPlayAnim)    {      animation.Play();      isPlayAnim = false;    }  }  }

關于Unity怎么實現鼠標或者手指點擊模型播放動畫問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

和平区| 甘洛县| 翼城县| 江孜县| 镇巴县| 新乡市| 苍山县| 安图县| 美姑县| 永嘉县| 福贡县| 泰安市| 县级市| 黑龙江省| 东兰县| 买车| 新昌县| 柳江县| 滦平县| 铜山县| 安徽省| 云和县| 讷河市| 灵山县| 大冶市| 武穴市| 莱阳市| 江阴市| 潞城市| 康乐县| 安仁县| 寿宁县| 文安县| 沙坪坝区| 安庆市| 精河县| 余庆县| 平度市| 绩溪县| 水城县| 九台市|