1. Trouble with the game?
    Try the troubleshooter!

    Dismiss Notice
  2. Issues with the game?
    Check the Known Issues list before reporting!

    Dismiss Notice

Audio Feedback Thread

Discussion in 'General Discussion' started by Nadeox1, Aug 9, 2017.

  1. The Stig Is A Spy

    The Stig Is A Spy
    Expand Collapse

    Joined:
    Apr 11, 2018
    Messages:
    201
    ...Speaking of which, in the same vein, would it make more sense for the Bruckell/Soliad 4.4 V8 to use the "modern crossplane" sound in the Wendover, as it currently does in the Lansdale?
     
  2. Der Ibishu Pigeon 2.0

    Der Ibishu Pigeon 2.0
    Expand Collapse

    Joined:
    Nov 28, 2024
    Messages:
    6
    The Sounds are better than in other games. Maybe the engine noises could be Made even more realistic, but they are already so great.
     
    • Agree Agree x 2
  3. ISO_Master

    ISO_Master
    Expand Collapse

    Joined:
    May 19, 2024
    Messages:
    165
    The new flathead V8 is a little bit "out of tune".
     
  4. TDK

    TDK
    Expand Collapse
    FLIT KILLS MOTHS
    BeamNG Team

    Joined:
    Dec 17, 2017
    Messages:
    642
    Thanks, yes - the whole RPM range was a little out. Fixed and in testing now
     
    #1364 TDK, Dec 16, 2024
    Last edited: Dec 16, 2024
    • Like Like x 1
  5. TDK

    TDK
    Expand Collapse
    FLIT KILLS MOTHS
    BeamNG Team

    Joined:
    Dec 17, 2017
    Messages:
    642
    It's a call for the vehicle designers. I can at least raise the question.
     
    • Like Like x 2
  6. Musicman27

    Musicman27
    Expand Collapse

    Joined:
    Dec 13, 2023
    Messages:
    2,568
    Speaking of not-new stuff, what V6 sourced the sound used in the wendover and legran V6's?
     
  7. TDK

    TDK
    Expand Collapse
    FLIT KILLS MOTHS
    BeamNG Team

    Joined:
    Dec 17, 2017
    Messages:
    642
    Absolutely no idea, these are all the old 3rd party supplied samples.
     
  8. FFIVGUY

    FFIVGUY
    Expand Collapse

    Joined:
    Feb 21, 2018
    Messages:
    603
    has there been any progress on this?
     
  9. The Stig Is A Spy

    The Stig Is A Spy
    Expand Collapse

    Joined:
    Apr 11, 2018
    Messages:
    201
    Thing that just occurred to me now: would a blend of the new 2019 5.0 V8 and the modern crossplane (Bruckell/ETK) V8 be possible? We already have blends of the 0.32 motorsport/perf I4s with both the Ibishu and Cherrier I4s.
     
  10. robben896

    robben896
    Expand Collapse

    Joined:
    Apr 30, 2021
    Messages:
    456
    What if there was a blend file for intake noise such as supercharger whine and turbo noise which worked in the same way as engine and exhaust blends and had more than one sound file and you could EQ in the audio debug the same way. Good or bad idea?
     
    • Agree Agree x 1
  11. robben896

    robben896
    Expand Collapse

    Joined:
    Apr 30, 2021
    Messages:
    456
    I feel like the supercharger whine is bit too loud on off throttle/coasting on some types.
     
  12. The Stig Is A Spy

    The Stig Is A Spy
    Expand Collapse

    Joined:
    Apr 11, 2018
    Messages:
    201
    Is there a source for the BX's new "modified" I4 sounds? They sound like quite the downgrade compared to the previous Covet+"motorsport" combo, since they have that European "flatness" to them (IDK how else to describe it).

    On the other hand (I mistakenly edited a post in the 0.35 thread since I forgot how it sounds completely unmuffled), thanks for adding the 5.0 V8 sound to the BX!
     
    • Agree Agree x 2
  13. ISO_Master

    ISO_Master
    Expand Collapse

    Joined:
    May 19, 2024
    Messages:
    165
    After driving Mitsubishi's in FH5, I've came into conclusion that this might come from a 4G63-engined car.
    --- Post updated ---
    By the way, where did the "New starter and shutoff sounds" go?
     
  14. Neverless

    Neverless
    Expand Collapse

    Joined:
    Sep 18, 2016
    Messages:
    226
    When loading a non looping sound in the vehicle lua to be played on a node eg.
    Code:
    local id = obj:createSFXSource2(file_path, "AudioSoft3D", "some name", v.data.refNodes[0].ref, -1)
    obj:setVolumePitch(id, 1, 1)
    obj:playSFX(id)
    and then reseting the vehicle the sound is automatically restarted. even when :playSFX isnt called on the sound.

    To combat this behaviour it was previously possible to catch the reset event and to cut all known sounds eg.
    Code:
    M.onReset = function()
        for _, id in pairs(SOUNDS) do
            obj:cutSFX(id)
        end
    end
    Since 0.35 :cutSFX doesnt always cut the sound anymore, about every second reset it would play all sounds and not cut any of them even when the call to :cutSFX is delayed by multiple frames. Only troubleshoot i found so far was to also add `obj:setVolumePitch(id, 0, 1)` to the same loop.
    https://github.com/OfficialLambdax/...lua/vehicle/extensions/auto/SoundsLib.lua#L52
     
  15. The Stig Is A Spy

    The Stig Is A Spy
    Expand Collapse

    Joined:
    Apr 11, 2018
    Messages:
    201
    So after giving the V-Special another whirl, I wonder if the sound would be a better fit for the Pessimas (particularly the loose Galant VR4 analogue that is the older GTz). Those are still sporty, but not quite to the degree of the BX. I know that between 0.32 and a 0.33 hotfix they had the "endurance" sounds (as used by the Vivace), though those were even more monotonous and turbo-whooshier than the 4G63 (tentatively speaking), not to mention unnaturally bassy with the race exhaust on the newer touring car.

    Another option would be to declare separate intake and exhaust sample names in the turbo intakes that would overwrite the base engine samples, whereas the NA intakes would use the sound samples declared in the base engine. Since I don't know of any vanilla turbo setups that can break from the engine block, the dynamic muffling system can stay as-is without needing to account for sample changes.

    Don't get me wrong - these new samples are good and definitely have a place in certain cars going forward. I'm just not convinced that the BX is one of those cars, especially compared to how it used to sound.
     
  16. TDK

    TDK
    Expand Collapse
    FLIT KILLS MOTHS
    BeamNG Team

    Joined:
    Dec 17, 2017
    Messages:
    642
    It's a modified Nissan Silvia S15
     
    • Like Like x 1
  17. JZStudios

    JZStudios
    Expand Collapse

    Joined:
    Feb 23, 2016
    Messages:
    361

    I really appreciate the audio editing of that. Eagerly awaiting more Beam sound updates, it would be kind of fun to have a Burnout style sound bank, or maybe something like Battlefield's "war tapes" setting.
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice