基於Unity編寫一個九宮格抽獎軟件
一、前言
本博文標題和內容參考:基於原生JS實現H5轉盤遊戲
博主將改編成Unity版本。
二、效果圖
三、案例制作
1.界面搭建
使用瞭9個圖片作為獎品欄,然後一個chooseBox作為蒙版,一個StartBtn開始按鈕放在中間
2.代碼編寫
新建腳本goLuckyDraw.cs
使用DoTween插件做動畫,沒有導入這個插件的下載導入一下
實現抽獎,主要有兩個方面,一個是概率的設置,一個是動畫
動畫
我使用一個蒙版用來表示當前選中的獎品,然後不斷將蒙版移動到下一個獎品的位置,就這樣形成一個動畫的效果:
using System.Collections; using System.Collections.Generic; using DG.Tweening; using UnityEngine; using UnityEngine.UI; public class goLuckyDraw : MonoBehaviour { public Image transparentBox;//蒙版 public List<Transform> boxList = new List<Transform>();//所有的位置對象 private Transform chooseBox;//蒙版要到達的位置 public Button button;//開始按鈕 void Start() { transparentBox.gameObject.SetActive(false); //獲取需要監聽的按鈕對象 button.onClick.AddListener(() => { StartLuckyDraw(); }); } private void StartLuckyDraw() { chooseBox = boxList[_index]; transparentBox.gameObject.SetActive(true); StartCoroutine(Move()); } IEnumerator Move() { float time = 0.2f; //下次開始旋轉的位置等於上次旋轉到的位置 for (int i = 0; i < boxList.Count; i++) { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } //旋轉兩圈 for (int i = 0; i < boxList.Count; i++) { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } for (int i = 0; i < boxList.Count; i++) { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } //當旋轉到指定的位置的時候結束 for (int i = 0; i < boxList.Count; i++) { if (transparentBox.transform.localPosition == chooseBox.localPosition) { transparentBox.transform.DOLocalMove(chooseBox.localPosition, time); continue; } else { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } } } }
然後將這個腳本掛載到一個遊戲對象上:
BoxList裡面的對象,按照順序拖進去。
效果圖:
概率設置
代碼:
//控制概率 //rate:幾率數組(%), total:幾率總和(100%) private int randomNum(int[] rate, int total=100) { if (rate == null) { int r = Random.Range(1, 7); return r; } else { int r = Random.Range(1, total + 1); int t = 0; for (int i = 0; i < rate.Length; i++) { t += rate[i]; if (r < t) { return i; } } return 0; } }
這個將一個概率數組傳遞進去,就可以控制概率瞭:
int[] AA = { 10, 10, 10, 10, 10, 10, 10, 30 }; int _index = randomNum(AA); //獲得得獎的下標數字 Debug.Log(_index);
算法理解:
然後代碼修改一下,解決兩個問題:
1、點擊頻率問題
2、下一次轉的時候不從當前位置轉的問題
完整代碼如下:
using System.Collections; using System.Collections.Generic; using DG.Tweening; using UnityEngine; using UnityEngine.UI; public class goLuckyDraw : MonoBehaviour { public Image transparentBox;//蒙版 public List<Transform> boxList = new List<Transform>();//所有的位置對象 private Transform chooseBox;//蒙版要到達的位置 public Button button;//開始按鈕 private bool isRotate = false;//控制點擊頻率 int index = 0;//轉盤轉到的位置記錄 void Start() { transparentBox.gameObject.SetActive(false); //獲取需要監聽的按鈕對象 button.onClick.AddListener(() => { if (!isRotate) { StartLuckyDraw(); } }); } private void StartLuckyDraw() { isRotate = true; //隨機概率可控制 int[] AA = { 10, 10, 10, 10, 10, 10, 10, 30 }; int _index = randomNum(AA); Debug.Log(_index); chooseBox = boxList[_index]; transparentBox.gameObject.SetActive(true); StartCoroutine(Move(_index)); } //控制概率 //rate:幾率數組(%), total:幾率總和(100%) private int randomNum(int[] rate, int total=100) { if (rate == null) { int r = Random.Range(0, 7); return r; } else { int r = Random.Range(1, total + 1); int t = 0; for (int i = 0; i < rate.Length; i++) { t += rate[i]; if (r < t) { return i; } } return 0; } } IEnumerator Move(int _index) { float time = 0.2f; //下次開始旋轉的位置等於上次旋轉到的位置 for (int i = index; i < boxList.Count; i++) { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } index = _index; //旋轉兩圈 for (int i = 0; i < boxList.Count; i++) { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } for (int i = 0; i < boxList.Count; i++) { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } //當旋轉到指定的位置的時候結束 for (int i = 0; i < boxList.Count; i++) { if (transparentBox.transform.localPosition == chooseBox.localPosition) { transparentBox.transform.DOLocalMove(chooseBox.localPosition, time); continue; } else { transparentBox.transform.DOLocalMove(boxList[i].localPosition, time); yield return new WaitForSeconds(time); } } isRotate = false; } }
3.效果演示
四、後言
這是一個簡單的抽獎系統,可以控制概率,也可以不傳遞概率數組,就會返回一個隨機值。
也可以設置一下概率,比如:
{10, 20, 0, 20, 20, 0, 20, 10 }
也就是:
反正加起來概率不要超過100就行。
以上就是基於Unity編寫一個九宮格抽獎軟件的詳細內容,更多關於Unity抽獎的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- Unity3d實現跑馬燈廣播效果
- Unity ScrollRect實現軌跡滑動效果
- Unity中協程IEnumerator的使用方法介紹詳解
- Unity實現簡單場景分層移動
- python3使用迭代生成器實現減少內存占用