Sound Cones in FSX: Difference between revisions

From FSDeveloper Wiki
Jump to navigationJump to search
No edit summary
m (Replaced Applicable-FSVersion for MSFS with MSFS2020, added MSFS2024)
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
= Introduction =
[[category:Sounds]]
 
[[category:Aircraft Design]]
{{Infobox-Applicable-FSVersion
| MSFS2024 = unknown
| MSFS2020 = true
| FSXI = false
| P3D5 = true
| P3D4 = true
| P3D3 = true
| P3D2 = true
| P3D = true
| FSW = true
| FSXSE = true
| FSXA = true
| FSX = true
| FS2004 = false
| FS2002 = false
| XP11 = unknown
| XP10 = unknown
| XP9 = unknown
}}
== Introduction ==
Looking at FSX sound.cfg, there are some new lines of code that control the sound cones:
Looking at FSX sound.cfg, there are some new lines of code that control the sound cones:


Line 12: Line 32:


=== InsideConeAngle ===
=== InsideConeAngle ===
The size of the inner cone (sound is played at full volume while the listener in inside this radius), range is 0 to 360
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 ===
=== 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 24: Line 44:


=== 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 42: Line 62:


--[[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 12:21, 25 May 2024

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”).

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