Hello! I need some great help, I have the script of a car that the SOUND of it works with gear changes, but these are direct and rough, and are not smoothed as in Forza Horizon for example, I explain, the tone directly changes without any smoothing for example.
Here is the code:
//Shifting
EngineRPM = (WheelDI.rpm + WheelDD.rpm)/1.8f * GearRatio[CurrentGear];
ShiftGears();
//Audio
audio.pitch = Mathf.Abs(EngineRPM / MaxEngineRPM) + 0.2f ;
void ShiftGears (){
int AppropriateGear = CurrentGear;
if ( EngineRPM >= MaxEngineRPM ) {
for ( int i= 0; i < GearRatio.Length; i ++ ) {
if ( WheelDI.rpm * GearRatio[i] < MaxEngineRPM ) {
AppropriateGear = i;
break;
}
}
CurrentGear = AppropriateGear;
}
if ( EngineRPM <= MinEngineRPM ) {
AppropriateGear = CurrentGear;
for ( int j= GearRatio.Length-1; j >= 0; j -- ) {
if ( WheelDI.rpm * GearRatio[j] > MinEngineRPM ) {
AppropriateGear = j;
break;
}
}
CurrentGear = AppropriateGear;
}
}
I would be very grateful if you help me!
Thanks!
↧