diff options
author | Nemrav <> | 2024-04-22 22:30:21 +0200 |
---|---|---|
committer | Nemrav <> | 2024-08-06 01:40:34 +0200 |
commit | 9506f4160f0bd351f0853e6e8263ea927d9ec771 (patch) | |
tree | 0a9bd4f52c01315c3b38ce641a78c33bd8562be2 /game/addons/MusicMetadata/README.md | |
parent | fde15e554dc9ed458a838683c69d10262764db12 (diff) |
Music and Sound Effect loading and playing
almost working music loading
music list sent to godot
wav loading not working
mp3 metadata
load wav initial
load and play title theme first
fix errors not related to nodetools
working wav define loading and music playlists
fixup error handling and playlist
load song chances
code style progress
switch mp3 metadata addon to MusicMetadata
add id3v1 mp3 metadata handling to MusicMetadata
remove commented code from id3v1
sounds gd styling
fix dataloader conflicts
clean up commented code
move MusicChance to dataloader
remove reference to old addon
move sfx defines loader
add self to credits
feedback on soundSingleton
include subfolders in sound singleton sfx map
replace space tabs
replace std_view_to_godot_string with std_to_godot_string
revise singleton files
revise gd side sound
final revisions
Diffstat (limited to 'game/addons/MusicMetadata/README.md')
-rw-r--r-- | game/addons/MusicMetadata/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/game/addons/MusicMetadata/README.md b/game/addons/MusicMetadata/README.md new file mode 100644 index 0000000..e5ccaaa --- /dev/null +++ b/game/addons/MusicMetadata/README.md @@ -0,0 +1,11 @@ +# MusicMetadata - A Godot 4 Plugin + +Parses and contains common music file metadata. + +This extention allows for common metadata parsed from music files, with the ability to parse (currently only ID3 formatted) metadata from files. The user may also use this as a means to store manually defined metadata about music tracks, as the data contained is not automatically linked to any changes made after the parsing of a file. + +Also includes a UI display for this metadata, which can be used as an example, or as is. + +This plugin is based off of 'MusicMeta', created by Aineejames and Wilcockj, under the MIT licence. + +This plugin itself is also licenced under the MIT licence. |