Difference between revisions of "Sound Cones in FSX"

From FSDeveloper Wiki
Jump to: navigation, search
(InsideConeAngle)
m (Infobox-Applicable-FSVersion upgrade, Categorised as - Sounds)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
[[category:Sounds]]
 +
[[category:Aircraft Design]]
 
{{Infobox-Applicable-FSVersion
 
{{Infobox-Applicable-FSVersion
 +
| MSFS = true
 
| FSXI = false
 
| FSXI = false
 +
| P3D5 = true
 +
| P3D4 = true
 +
| P3D3 = true
 +
| P3D2 = true
 +
| P3D = true
 +
| FSW = true
 +
| FSXSE = true
 
| FSXA = true
 
| FSXA = true
 
| FSX = true
 
| FSX = true
 
| FS2004 = false
 
| FS2004 = false
 
| FS2002 = false
 
| FS2002 = false
| FS2000 = unknown
+
| XP11 = unknown
| FS98 = unknown
+
| XP10 = unknown
 +
| XP9 = unknown
 
}}
 
}}
 
== Introduction ==
 
== Introduction ==
Line 23: Line 34:
  
 
=== OutsideConeAngle ===
 
=== OutsideConeAngle ===
The size of the outer cone (the volume is attenuated between the inside cone and outside cone), range is 0 to 360 and it needs to be larger than the InsideConeAngle.
+
The size of the outer cone (the volume is attenuated beginning at the end of the inside cone up to the end of the outside cone), range is 0 to 360 and it needs to be larger than the InsideConeAngle.
  
 
=== ConePitch ===
 
=== ConePitch ===
Line 32: Line 43:
  
 
=== OutsideConeVolume ===
 
=== OutsideConeVolume ===
Volume of the sound at the outside cone. This sets the rolloff between the inside and outside cones. The range is 0 to 10000, which is misleading – a setting below 9000 is impractical in almost all cases. If it’s set to zero, the sound is inaudible almost immediately beyond the range of the inside cone. Getting this setting right requires a lot of experimentation.
+
Volume of the sound at the end of the outside cone. This sets the rolloff between the end of inside and end of outside cones. The range is 0 to 10000, which is misleading – a setting below 9000 is impractical in almost all cases. If it’s set to zero, the sound is inaudible almost immediately beyond the range of the inside cone. Getting this setting right requires a lot of experimentation.
  
 
= 737 Example =
 
= 737 Example =
Line 50: Line 61:
  
 
--[[User:Owenhewitt|Owenhewitt]] 16:39, 30 September 2006 (CEST)
 
--[[User:Owenhewitt|Owenhewitt]] 16:39, 30 September 2006 (CEST)
 
[[category:Aircraft Design]]
 

Latest revision as of 09:59, 24 October 2020

Introduction

Looking at FSX sound.cfg, there are some new lines of code that control the sound cones:

InsideConeAngle=90
OutsideConeAngle=270
ConePitch=0.000000
ConeHeading=0.000000
OutsideConeVolume=9600

InsideConeAngle

The size of the inner cone (sound is played at full volume while the listener is inside this angle), range is 0 to 360

OutsideConeAngle

The size of the outer cone (the volume is attenuated beginning at the end of the inside cone up to the end of the outside cone), range is 0 to 360 and it needs to be larger than the InsideConeAngle.

ConePitch

Pitch (direction up or down) in degrees, of the cone. Range is -180 to 180

ConeHeading

The direction the cone is pointing, range is 0 to 360 (might be 1 to 360 – I’ll have to check on that…)

OutsideConeVolume

Volume of the sound at the end of the outside cone. This sets the rolloff between the end of inside and end of outside cones. The range is 0 to 10000, which is misleading – a setting below 9000 is impractical in almost all cases. If it’s set to zero, the sound is inaudible almost immediately beyond the range of the inside cone. Getting this setting right requires a lot of experimentation.

737 Example

Here is how it is set for one of the sound nodes on the 737:

InsideConeAngle=90
OutsideConeAngle=270
ConePitch=0
ConeHeading=0
OutsideConeVolume=9000

Basically, this sound is projecting straight forward from the engine. It plays at full volume in a 90 degree cone around the center point, and then attenuates between 90 and 270 degrees. Outside the outer cone, the sound stays at the “9000” volume setting (which translates to “very quiet, but not quite silent”).

737 soundcone.jpeg

--Owenhewitt 16:39, 30 September 2006 (CEST)