【搬运】【Unity开发小技巧】Unity随机概率扩展(概率可调控) ...

打印 上一主题 下一主题

主题 933|帖子 933|积分 2801

做了以下两张图有助于明白,如果想调控概率的话直接修改概率数组即可,实战案例:http://t.csdn.cn/P9QKJ
其实在做概率类相关的界面结果的时候,我们真实做法都是在刷新界面前已经把结果获取到了,然后根据结果行止置惩罚界面上的逻辑,一定要带着这个思想去明白以下内容
 
一.做加法
  1. 1 /**加*/
  2. 2 //rate:几率数组(%), total:几率总和(100%)
  3. 3 // Debug.Log(rand(new int[] { 10, 5, 15, 20, 30, 5, 5,10 }, 100));
  4. 4 public static int rand(int[] rate, int total)
  5. 5 {
  6. 6 int r = Random.Range(1, total+1);
  7. 7 int t = 0;
  8. 8 for (int i = 0; i < rate.Length; i++)
  9. 9 {
  10. 10 t += rate[i];
  11. 11 if (r < t)
  12. 12 {
  13. 13 return i;
  14. 14 }
  15. 15 }
  16. 16 return 0;
  17. 17 }
复制代码
 
二.做减法
[code] 1 /**减*/ 2 //rate:几率数组(%), total:几率总和(100%) 3 // Debug.Log(randRate(new int[] { 10, 5, 15, 20, 30, 5, 5,10 }, 100)); 4 public static int randRate(int[] rate, int total) 5 { 6 int rand = Random.Range(0, total+1); 7 for (int i = 0; i < rate.Length; i++) 8 { 9 rand -= rate;10 if (rand
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

祗疼妳一个

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表