成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

unity中如何自定義彈出框功能-創(chuàng)新互聯(lián)

這篇文章給大家介紹unity中如何自定義彈出框功能,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

創(chuàng)新互聯(lián)專注于永興企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,商城建設(shè)。永興網(wǎng)站建設(shè)公司,為永興等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站策劃,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

一、彈出框的搭建

布局如圖:Message為整個父物體,并且添加UiMessage代碼。panel為遮罩。

MessageBox為整個提示框,Panel為標(biāo)題,ok為確定按鈕,cancel為取消按鈕,retry為重試按鈕,Text為提示框的文字。

注意大小寫,后面代碼會根據(jù)名稱進行獲取對應(yīng)組建。

效果如下:

二、MessageBox代碼

要說明的都在代碼中注釋了。仿照Windows的提示框功能,如果功能不足可自行添加。例如關(guān)閉按鈕、顯示圖標(biāo)等。

using System;public enum DialogResult{  Ok,  OKCancel,  RetryCancel,  YesNo,  YesNoCancel}public static class MessageBox{  /// <summary>  /// true表示模態(tài)框  /// </summary>  public static bool type;  //三個委托,分別為三個按鈕的點擊運行事件  public static Action clickOk;  public static Action clickRetry;  public static Action clickCancel;  public static DialogResult dialogResult;  //標(biāo)題  public static string headText;  //文本  public static string text;  //狀態(tài)。用于顯示或隱藏彈出框  public static bool state;  /// <summary>  ///重試按鈕點擊事件  /// </summary>  public static void onClickRetry()  {    state = false;    clickRetry?.Invoke();    clickRetry = null;  }  /// <summary>  /// 取消按鈕點擊事件  /// </summary>  public static void onClickCancel()  {    state = false;    clickCancel?.Invoke();    clickCancel = null;  }  /// <summary>  /// 確定按鈕點擊事件  /// </summary>  public static void onClickOk()  {    state = false;    clickOk?.Invoke();    clickOk = null;  }  /// <summary>  /// 顯示  /// </summary>  /// <param name="_text">內(nèi)容</param>  /// <param name="_head">標(biāo)題</param>  /// <param name="dialog">樣式</param>  /// <param name="type">模式</param>  public static void Show(string _text,string _head,DialogResult _dialog, bool _type = true)  {    text = _text;    headText = _head;    dialogResult = _dialog;    type = _type;    state = true;  }  public static void Show(string _text,string _head,bool _type = true)  {    text = _text;    headText = _head;    dialogResult = DialogResult.Ok;    type = _type;    state = true;  }  public static void Show(string _text, bool _type = true)  {    text = _text;    headText = "信息";    dialogResult = DialogResult.Ok;    type = _type;    state = true;  }}

三、UiMessage代碼

添加到Message物體上。用于控制彈出框的顯示等功能。

using UnityEngine;using UnityEngine.UI;public class UiMessage : MonoBehaviour{  public Button ok;  public Button cancel;  public Button retry;  /// <summary>  /// 遮罩  /// </summary>  public GameObject panel;  public Text headText;  public Text text;  /// <summary>  /// 彈出框  /// </summary>  private GameObject messageBox;  private void Awake()  {    messageBox = gameObject.transform.GetChild(1).gameObject;    ok = messageBox.transform.Find("ok").GetComponent<Button>();    cancel = messageBox.transform.Find("cancel").GetComponent<Button>();    retry = messageBox.transform.Find("retry").GetComponent<Button>();    panel = gameObject.transform.Find("panel").gameObject;    text = messageBox.transform.Find("Text").GetComponent<Text>();    headText = messageBox.transform.GetChild(0).Find("head").GetComponent<Text>();    //將提示框居中顯示    messageBox.transform.position = new Vector3(Screen.width / 2 - messageBox.GetComponent<RectTransform>().rect.width / 2,        Screen.height / 2 + messageBox.GetComponent<RectTransform>().rect.height / 2, 0);    init();  }  private void OnEnable()  {    init();  }  private void init()  {    ok.onClick.AddListener(MessageBox.onClickOk);    cancel.onClick.AddListener(MessageBox.onClickCancel);    retry.onClick.AddListener(MessageBox.onClickRetry);    text.text = MessageBox.text;    headText.text = MessageBox.headText;    //根據(jù)傳遞的參數(shù),進行樣式的顯示    switch (MessageBox.dialogResult)    {      case DialogResult.Ok:        ok.gameObject.SetActive(true);        cancel.gameObject.SetActive(false);        retry.gameObject.SetActive(false);        break;      case DialogResult.OKCancel:        ok.gameObject.SetActive(true);        cancel.gameObject.SetActive(true);        retry.gameObject.SetActive(false);        break;      case DialogResult.RetryCancel:        ok.gameObject.SetActive(true);        cancel.gameObject.SetActive(true);        retry.gameObject.SetActive(true);        break;      case DialogResult.YesNo:        ok.transform.GetChild(0).GetComponent<Text>().text = "是";        cancel.transform.GetChild(0).GetComponent<Text>().text = "否";        ok.gameObject.SetActive(true);        cancel.gameObject.SetActive(true);        retry.gameObject.SetActive(false);        break;      case DialogResult.YesNoCancel:        ok.transform.GetChild(0).GetComponent<Text>().text = "是";        cancel.transform.GetChild(0).GetComponent<Text>().text = "否";        ok.gameObject.SetActive(true);        cancel.gameObject.SetActive(true);        retry.gameObject.SetActive(true);        break;    }  }  private void Update()  {    panel.SetActive(MessageBox.type);    gameObject.SetActive(MessageBox.state);  }}

四、顯示框的調(diào)用

此處調(diào)用可以自行設(shè)置一個按鈕,在其點擊事件中注冊調(diào)用即可。

筆者使用項目中的方式進行演示。具體不做說明。調(diào)用方式已給出。

特別注意:由于UiMessage調(diào)用了MessageBox的方法,所以必須先初始化MessageBox的數(shù)據(jù)。使用什么就初始化什么。筆者使用了ok、cancel按鈕(默認不初始化模式,即為模態(tài)框,不初始化DialogResult即為只顯示ok按鈕),所以注冊了相應(yīng)的點擊事件(委托)。最后顯示彈出框(整個包含遮罩和彈出框)。

五、運行結(jié)果

六、彈出框可拖拽移動

將DragManage添加到MessageBox物體上面。(如果你想讓ui物體可拖拽,對其添加DragManage即可實現(xiàn))

筆者就不做演示了

using UnityEngine;using UnityEngine.EventSystems;/// <summary>/// 只是用來處理拖拽/// </summary>public class DragManage : MonoBehaviour, IDragHandler, IBeginDragHandler, IEndDragHandler{  private Vector3 offect;  public void OnBeginDrag(PointerEventData eventData)  {    offect = Input.mousePosition - transform.position;  }  public void OnDrag(PointerEventData eventData)  {    transform.position = Input.mousePosition - offect;  }  public void OnEndDrag(PointerEventData eventData)  {    transform.position = Input.mousePosition - offect;  }}

關(guān)于unity中如何自定義彈出框功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

本文名稱:unity中如何自定義彈出框功能-創(chuàng)新互聯(lián)
鏈接地址:http://jinyejixie.com/article30/jshso.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、網(wǎng)站內(nèi)鏈服務(wù)器托管、網(wǎng)站改版建站公司、商城網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
中宁县| 聂拉木县| 黔南| 怀仁县| 南阳市| 濉溪县| 闵行区| 普兰店市| 望都县| 皮山县| 垦利县| 达拉特旗| 静海县| 商城县| 疏附县| 漠河县| 潢川县| 开阳县| 措美县| 长治市| 武乡县| 武川县| 沁源县| 措勤县| 和田市| 轮台县| 吐鲁番市| 和硕县| 西盟| 丰原市| 崇左市| 吉安县| 泰宁县| 湟中县| 台前县| 甘孜| 疏附县| 兴国县| 阿拉善盟| 乌海市| 广东省|