Adding the Audio API Roll Off Curve Editor [Beta]

Are there plans to reintroduce volumetric audio for the new API? The other day I had to add FX to a waterfall and it was difficult to get the stereo effect right with the current punctual emitters.

10 Likes

This is a nice update, even though its quite small.
Will we ever get a system where we can precisely control where each audio is played, without having to do too much scripting?
This is what I mean:
Different noises produced from a Jet Engine

6 Likes

tangents would be awesome, it’d be especially cool if we had a sequence evaluation method integrated directly into the sequence class to facilitate the tangent calculations (and even envelopes). The current evaluation method works, but I feel like we could get even more out of a direct method

6 Likes

I’d say this is pretty cool, I can see how this makes a great ambiance structure for many environments!

Will we be able to switch between curve types btw?

3 Likes

This is very usefull! I hope to use it in my future projects as this is the feature i’ve been waiting for.

3 Likes

I’m curious, if aside from all of the super cool new functionality and flexibility provided from the new AudioEmitters, it’s worth switching over from using regular sounds if you don’t yet intend to use the new functionality. As in order to play a simple sound, in example an explosion, I have to instantiate 3-5 objects (AudioPlayer, AudioEmitter, Wire, AudioFader + Wire*) just to play the sound as opposed to just one Sound instance. I would hope not that, in the case of having a chain reaction of a dozen explosions in a second, having many more instances would cause higher memory load.

2 Likes

I’d like to be able to use presets similar to the ones available for standard sounds. It’s difficult to achieve the perfect InverseTapered roll-off mode, especially when changing the maximum roll-off distance. I use audio API for voice chat, so I can’t exactly use standard sound instances

I also want to know the default proximity voice chat roll-off settings, the minimum and maximum distance, as well as the curve shape

4 Likes

wow I really love the new Audio API because it allows me to make a music system which works like a PA System! tbh I have autism and i’m into technology! I can’t wait to see what I’ll do with the curve editor!

3 Likes

Very nice update, but I’m not quite sure what the exact purpose is, because except for AudioAnalyzer and VoiceChatService’s UseAudioApi’s Enabled, other functions can achieve similar effects through VolumetricAudio Enabled, SoundEffects and SoundGroup instances, Wouldn’t the new API be a better choice to use with the older version of Sound. together? that would also make the sound management more complex, will the old SoundEffect be updated with enhancements and hopefully Roblox will update the visual DAW to control the sound : )

2 Likes

If worries about Instance memory are your only concern then you can probably set them aside.

The additional cost of Emitter + Player being separate Instances and the extra Wires is a negligible amount of extra memory in the grand scheme of things. To put it in perspective, depending on the length a single audio asset which you’re playing may even take up more memory than all the Instance memory of the audio related Instances in the place.

In general Instance memory is rarely the bottleneck in experiences.

7 Likes

does the lowest value in the curve though

actually go low enough in dB, to mute the sound? :thinking:

4 Likes

I also want to know the default proximity voice chat roll-off settings, the minimum and maximum distance, as well as the curve shape

By default, all AudioEmitters in the new API use an inverse rolloff curve that replicates the rolloff of Sounds with a minumum distance of 4 and a maximum distance of 10000. The default voice chat setup using the new API does not currently change this behavior.

Voice chat without the new API uses a quadratic rolloff curve with a minumum distance of 7 and a maximum distance of 80. Our documentation contains a code sample which shows how to replicate this curve using the distance attenuation API.

5 Likes

This is really cool, basically UIGradient but it is on Sounds.

Now we dont need to open an sound editing app outside Roblox. This is a time saver.

2 Likes

Once you’ve given users the ability to allow places/groups/other users, to use audios even if they aren’t a developer for a group, or place… I’ll sing praises for this… until then; this is unneeded as audios are almost entirely pointless.

2 Likes

Yes; Volume here is multiplicative, so 0 means completely inaudible

6 Likes

so then this would mean, you’d no longer need that script introduced in the beta API post to have proximity voice chat for new voice chat

that’s very good!!

5 Likes

Many thanks! This information is extremely useful. Including this in the documentation would benefit some people

3 Likes

A amazing change to a bad system, amazing update!

3 Likes

Following off of this fantastic addition. Would we be able to change the “Slope” of the Equalizer / 3Band EQ sound effect in the future? The current 24dB/Oct curve is VERY sharp and can sound weird in a lot of situations where subtle filtering is needed. Whenever tweening the EQ bands it produces the classic 2000s EQ sweep and I’m looking for something more subtle for far away sounds.
Keep up the great work on the Audio API, honestly it’s so refreshing to see time and effort being put into the audio side of things! :pray: thank you :saluting_face:

3 Likes

I use NumberSequence attributes to achieve the same results. It lets you use the same curve editor (although it is constrained within the range of 0 - 1)

1 Like