Quantcast
Channel: Questions in topic: "realistic"
Viewing all articles
Browse latest Browse all 146

car shifting smoothed. help!

$
0
0
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!

Viewing all articles
Browse latest Browse all 146

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>