cleanup comment

This commit is contained in:
icomrade
2016-08-31 18:08:58 -04:00
parent 04b6707191
commit 678acff706

View File

@@ -237,52 +237,4 @@ class CSJ_GyroC: Helicopter
volume = "(rotorSpeed-0.72)*5";
};
};
};
/*
soundEngineOnInt[] = {"ca\sounds\Air\UH1Y\int\int-start-final", 0.1, 1.0};
soundEngineOnExt[] = {"ca\sounds\Air\UH1Y\ext\ext-motor-start", 1.0, 1.0, 800};
soundEngineOffInt[] = {"ca\sounds\Air\UH1Y\int\int-stop-final", 0.1, 1.0};
soundEngineOffExt[] = {"ca\sounds\Air\UH1Y\ext\ext-motor-stop", 1.0, 1.0, 800};
class Sounds {
class Engine {
sound[] = {"\usec_ch53\sound\ch53_turbine", db8, 1.0, 900};
frequency = "rotorSpeed";
volume = "camPos*((rotorSpeed-0.72)*4)";
};
class RotorLowOut {
sound[] = {"\usec_ch53\sound\ch53_rotor_low", db8, 1.0, 1400};
frequency = "rotorSpeed";
volume = "camPos*(0 max (rotorSpeed-0.1))";
cone[] = {1.6, 3.14, 2.0, 0.5};
};
class RotorHighOut {
sound[] = {"\usec_ch53\sound\ch53_rotor_high", 3.51189, 1.0, 1600};
frequency = "rotorSpeed";
volume = "camPos*10*(0 max (rotorThrust-0.9))";
cone[] = {1.6, 3.14, 2.0, 0.5};
};
class EngineIn {
sound[] = {"\usec_ch53\sound\ch53_turbine_in", db10, 1.0};
frequency = "rotorSpeed";
volume = "(1-camPos)*((rotorSpeed-0.75)*4)";
};
class RotorLowIn {
sound[] = {"\usec_ch53\sound\ch53_rotor_low", db10, 1.0};
frequency = "rotorSpeed";
volume = "2*(1-camPos)*((rotorSpeed factor[0.3, 1.1]) min (rotorSpeed factor[1.1, 0.3]))";
};
class RotorHighIn {
sound[] = {"\usec_ch53\sound\ch53_rotor_high", db18, 1.0};
frequency = "rotorSpeed";
volume = "(1-camPos)*3*(rotorThrust-0.9)";
};
};
*/
};