소스 검색

Upload files to 'Nasal'

Vibration changes -  Flight vibration increases from 120 kts progressivly  the VNE at 140 kts. If you can hang on to it  beyond that, good luck.
StuartC 1 년 전
부모
커밋
ae588cb29f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Nasal/bo105.nas

+ 2 - 2
Nasal/bo105.nas

@@ -605,9 +605,9 @@ var vibration = { # and noise ...
 	},
 	update: func(dt) {
 		var airspeed = me.airspeedN.getValue();
-		if (airspeed > 130) { # overspeed vibration
+		if (airspeed > 120) { # overspeed vibration
 			var frequency = 2000 + 500 * rand();
-			var v = 0.49 + 0.5 * normatan(airspeed - 130, 10);
+			var v = 0.49 + 0.5 * normatan(airspeed - 140, 10);
 			var intensity = v;
 			var noise = v * internal;