This commit is contained in:
aozhiwei 2019-04-13 12:03:49 +08:00
parent ec92ae9234
commit 3619cd46f9

View File

@ -211,7 +211,8 @@ namespace a8
float RandAngle()
{
float angle = ((float)rand() / RAND_MAX) * 2.0f;
float angle = 0.00001f + ((float)rand() / RAND_MAX) * 2.0f;
return angle;
}
}