summaryrefslogtreecommitdiffstats
path: root/scene/3d/audio_stream_player_3d.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Fix AudioStreamPlayer3D still processing when out of rangeWierdox2024-09-191-0/+1
|
* Add samples playback supportAdam Scott2024-06-181-0/+6
|
* Change AudioStreamPlayer autoplay and GLTFBufferView getters to be constAaron Franke2024-02-081-1/+6
|
* Add AudioStreamPlayerInternal to unify stream playerskobewi2024-01-171-25/+8
|
* Implement audio stream playback parameters.Juan Linietsky2024-01-161-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements a way for audio stream playback to be configured via parameters directly in the edited AudioStreamPlayer[2D/3D]. Currently, configuring the playback stream is not possible (or is sometimes hacky as the user has to obtain the currently played stream, which is not always immediately available). This PR only implements this new feature to control looping in stream playback instances (a commonly requested feature, which was lost in the transition from Godot 2 to Godot 3). But the idea is that it can do a lot more: * If effects are bundled to the stream, control per playback instance parameters such as cutoff or resoance, or any other exposed effect parameter per playback instance. * For the upcoming interactive music PR (#64488), this exposes an easy way to change the active clip, which was not possible before. * For the upcoming parametrizable audio support (https://github.com/godotengine/godot-proposals/issues/3394) this allows editing and animating audio graph parameters. In any case, this PR is required to complete #64488. Update modules/vorbis/audio_stream_ogg_vorbis.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update modules/minimp3/audio_stream_mp3.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update modules/minimp3/audio_stream_mp3.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update modules/vorbis/audio_stream_ogg_vorbis.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update doc/classes/AudioStream.xml Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* Add a bus_renamed AudioServer signalMewPurPur2023-09-151-1/+2
|
* Implement blending audio feature to AnimationTreeSilc Renew2023-01-281-0/+2
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Merge pull request #64077 from ↵Rémi Verschelde2022-11-151-1/+1
|\ | | | | | | | | | | Calinou/tweak-audiostreamplayer2d3d-default-panning Decrease default AudioStreamPlayer2D/3D panning strength
| * Decrease default AudioStreamPlayer2D/3D panning strengthHugo Locurcio2022-08-091-1/+1
| | | | | | | | | | The default panning strength is now more in line with how other engines play positional sound.
* | Rename AudioStreamPlayer3D's `unit_db` to `volume_db`Micky2022-09-171-3/+3
| | | | | | | | | | | | AudioStreamPlayer3D.`unit_db` -> `volume_db` Now matches the same name AudioStreamPlayer and AudioStreamPlayer2D use.
* | Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-1/+1
|/
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-0/+1
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Audio: Expose 2D/3D panning strength parametersEllen Poe2022-06-171-0/+6
|
* Only call _update_panning during _physics_process.Lyuma2022-05-251-1/+2
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Remove unused `out_of_range_mode` property from AudioStreamPlayer3DHugo Locurcio2021-09-171-11/+0
| | | | | The `out_of_range_mode` property is no longer used since audio mixing was moved out of the various AudioStreamPlayer nodes.
* Add polyphony to Audio Stream Player nodesEllen Poe2021-09-071-3/+12
|
* Do all audio mixing in the AudioServerEllen Poe2021-08-271-29/+13
|
* Fix some unnecessary includesAaron Franke2021-08-131-2/+0
|
* Increase the default AudioStreamPlayer3D unit size to 10Hugo Locurcio2021-05-061-1/+1
| | | | | | | | | | | This makes it easier to hear sound while setting up the node. Since this changes the default value, this may break existing projects slightly. This also tweaks the Unit Size editor property hint for better usability. See discussion in #25468.
* Modernize atomicsPedro J. Estébanez2021-02-181-5/+6
| | | | | | | | | | - Based on C++11's `atomic` - Reworked `SafeRefCount` (based on the rewrite by @hpvb) - Replaced free atomic functions by the new `SafeNumeric<T>` - Replaced wrong cases of `volatile bool` by the new `SafeFlag` - Platform-specific implementations no longer needed Co-authored-by: Hein-Pieter van Braam-Stewart <hp@tmm.cx>
* Initialize class variables with default values in scene/ [1/2]Rafał Mikrut2021-02-071-37/+30
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Add override keywords.Marcel Admiraal2020-07-101-1/+1
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-2/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Replace NULL with nullptrlupoDharkael2020-04-021-1/+1
|
* Renamed 2D and 3D nodes to make their types explicitJuan Linietsky2020-03-271-6/+6
| | | | Fixes #30736.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Fixed multichannel panning for AudioStreamPlayer3D.zwostein2019-07-021-0/+1
|
* Remove unnecessary code and add some error explanationsqarmin2019-07-011-1/+1
|
* Made use of semicolons more consitent, fixed formattingJohnJLight2019-06-191-1/+2
|
* Revert "Fix AudioStreams::stop possibly causing a small noise"Juan Linietsky2019-04-271-3/+2
|
* Merge pull request #26868 from NilsIrl/masterRémi Verschelde2019-04-221-0/+1
|\ | | | | Add Attenuation Model "NO" for AudioStreamPlayer3D
| * Add Attenuation Model "DISABLED" for AudioStreamPlayer3DNils ANDRÉ-CHANG2019-04-221-0/+1
| |
* | Added generator audio stream, and spectrum analyzer audio effectJuan Linietsky2019-04-101-0/+2
|/ | | | | | Made AudioFrame and Vector2 equivalent for casting. Added ability to obtain the playback object from stream players. Added ability to obtain effect instance from audio server.
* Fix AudioStreams::stop possibly causing a small noiseMarcelo Fernandez2019-02-171-2/+3
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Improved stream paused fade codeMarcelo Fernandez2018-07-091-1/+2
|
* Pause AudioStreamPlayers when SceneTree pausesMarcelo Fernandez2018-06-031-0/+5
|
* Revert "Use fake audio playing property in editor"Hein-Pieter van Braam2018-05-131-4/+0
|
* Use fake audio playing property in editorShyRed2018-03-161-0/+4
| | | | | | | | It appears that some time ago users were supposed to be able to include the playback of sound effects in their animations by placing keys on the "playing" property. Back then the key frame editor took the value of the checkbox in the property_editor. Somewhere / Sometime this behaviour changed and the key frame editor is now reading the actual value from the object instead of relying on the property editor. This commit introduces a fake active field that is returned when reading the playing property in the editor. While the actual active flag is changed when playback is finished the fake one will stay the same thus allowing the user to take their time with setting the key in the animation editor.
* Merge pull request #15254 from mrcdk/pitch_scaleRémi Verschelde2018-02-011-0/+4
|\ | | | | Added pitch scale property to AudioStreamPlayer, AudioStreamPlayer2D and AudioStreamPlayer3D
| * Added pitch scale property to AudioStreamPlayer, AudioStreamPlayer2D and ↵MrCdK2018-01-011-0/+4
| | | | | | | | AudioStreamPlayer3D
* | Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+30
|/ | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Renamed fixed_process to physics_processAndreaCatania2017-09-301-1/+1
|
* Rename get_position => get_playback_position and seek_pos => seek on audio ↵Marcelo Fernandez2017-09-231-1/+1
| | | | classes
* Rename pos to position in user facing methods and variablesletheed2017-09-201-1/+1
| | | | | | | | | | | Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is.