summaryrefslogtreecommitdiffstats
path: root/modules/interactive_music
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-1/+1
|\
| * Fix many untagged true/false/null in the documentationMicky2024-11-101-1/+1
| |
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-1/+1
|\|
| * Rename internal Button icon to button_icon to match exposed methodsAaron Franke2024-10-291-1/+1
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-2710-20/+20
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1110-0/+20
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Merge pull request #96634 from bobby-the-epic/audio-doc-fixRémi Verschelde2024-09-061-1/+1
|\ | | | | | | Fix grammar in AudioStreamInteractive docs
| * Fix grammar in AudioStreamInteractive.xmlbobby-the-epic2024-09-051-1/+1
| | | | | | | | Minor grammar fix to make the sentences flow better.
* | Fix interactive audio transitions fade in for clips with auto_advanceGustavo Jaruga Cruz2024-08-191-3/+5
|/
* Merge pull request #95134 from ↵Rémi Verschelde2024-08-071-3/+3
|\ | | | | | | | | | | Calinou/audio-interactive-transition-editor-expand-columns Expand columns in the audio interactive transition editor
| * Expand columns in the audio interactive transition editorHugo Locurcio2024-08-041-3/+3
| | | | | | | | | | This prevents columns from being unusably narrow, especially on hiDPI displays.
* | Fix several typos in the documentationHaoyu Qiu2024-08-021-1/+1
|/
* Fix new stream types `mix()` not returning 0 when inactiveAdam Scott2024-07-183-13/+4
|
* [Audio] Prevent crash in interactive playbackA Thousand Ships2024-07-172-3/+5
|
* [Scene] Add `SceneStringNames::text/value_changed`A Thousand Ships2024-06-191-1/+1
|
* [Scene] Add `SceneStringNames::item_selected`A Thousand Ships2024-06-191-4/+4
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-1/+1
|
* Improve AudioStreamPlaylist class referenceHaoyu Qiu2024-06-021-6/+6
|
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-3/+3
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-2/+2
|
* Improve transition enabled header in interactive music editorkobewi2024-05-081-2/+2
|
* Fix i18n in AudioStreamInteractive transition editorHaoyu Qiu2024-05-081-21/+19
| | | | | | | - Don't translate user-defined clip names. - Add missing i18n for some UI strings. - Also fixed error when selecting top-right "From/To" cell. - Also removed unused header includes.
* Organize existing code for editor pluginsAaron Franke2024-04-271-1/+1
|
* Fix GCC build failureAdam Scott2024-03-131-1/+1
|
* Add interactive music supportJuan Linietsky2024-03-1218-0/+3299
This PR adds 3 types of audio streams used for interactive music support. * AudioStreamInteractive: Allows setting several sub-streams and transition between them with many options. * AudioStreamPlaylist: Allows sequential or shuffled playback of a list of streams. * AudioStreamSynchronized: Allows synchronous playback of several streams, the volume of each can be controlled. Theese three stream types can be combined to create complex, layered interactive music and transitions between them, similar to software such as WWise.