Hello everyone, help me understand how to do random damage, for example, min damage 240 average 350 and maximum 450 so that each race shoots damage randomly from these numbers
float dmg = FMath::RandRange(240.0f,450.0f);
As well there is an integer version.