NPC随机响应算法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NPC随机响应算法相关的知识,希望对你有一定的参考价值。
45%的概率友好致敬
25%的概率转身离开
20%的概率攻击
10%的概率送礼
int choose()
{
float[] propArray = {45%,25%,20%,10%}
float total = 0.0f;
for(int i = 0 ; i < propArray.length;i++)
{
total += propArray[i];
}
float propValue = Random.value*total;
for(int i = 0 ; i< propArray.length; i++)
{
if(propValue < propArray[i])
{
return i;
}else{
propValue -= propArray[i];
}
}
return propArray.length - 1;
}
以上是关于NPC随机响应算法的主要内容,如果未能解决你的问题,请参考以下文章