add logo and proper icon, update @icon refs
logo.jpg displays at the top of README.md. gd-dynamic-sound-icon.jpg replaces the icon.svg placeholder for the @icon decorator on all six player wrappers plus the DynamicSound and DynamicSoundPlaylist resources. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
5758106b1e
commit
184b257135
|
|
@ -1,3 +1,5 @@
|
|||

|
||||
|
||||
# gd-dynamic-sound
|
||||
|
||||
A Godot 4 audio addon for **dynamic music** (intensity-layered, seamless playlist transitions, fade in/out) and **overlapping one-shot SFX** — both built on `AudioStreamPolyphonic`.
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 81 KiB |
|
|
@ -0,0 +1,40 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://bny3rl7bvwn0i"
|
||||
path="res://.godot/imported/gd-dynamic-sound-icon.jpg-d7e11273584ff253e211b46c08833600.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg"
|
||||
dest_files=["res://.godot/imported/gd-dynamic-sound-icon.jpg-d7e11273584ff253e211b46c08833600.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="CompressedTexture2D"
|
||||
uid="uid://cgqver78prtlf"
|
||||
path="res://.godot/imported/logo.jpg-eeda92563711509d55301ee15f9a0e8a.ctex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://addons/gd-dynamic-sound/logo.jpg"
|
||||
dest_files=["res://.godot/imported/logo.jpg-eeda92563711509d55301ee15f9a0e8a.ctex"]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/high_quality=false
|
||||
compress/lossy_quality=0.7
|
||||
compress/uastc_level=0
|
||||
compress/rdo_quality_loss=0.0
|
||||
compress/hdr_compression=1
|
||||
compress/normal_map=0
|
||||
compress/channel_pack=0
|
||||
mipmaps/generate=false
|
||||
mipmaps/limit=-1
|
||||
roughness/mode=0
|
||||
roughness/src_normal=""
|
||||
process/channel_remap/red=0
|
||||
process/channel_remap/green=1
|
||||
process/channel_remap/blue=2
|
||||
process/channel_remap/alpha=3
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/normal_map_invert_y=false
|
||||
process/hdr_as_srgb=false
|
||||
process/hdr_clamp_exposure=false
|
||||
process/size_limit=0
|
||||
detect_3d/compress_to=1
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
@tool
|
||||
class_name DynamicSound
|
||||
## A single piece of audio with up to three intensity layers that play simultaneously.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@tool
|
||||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
class_name DynamicSoundFXPlayer
|
||||
## A one-shot SFX player that supports overlapping plays.
|
||||
##
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@tool
|
||||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
class_name DynamicSoundFXPlayer2D
|
||||
## 2D positional variant of [DynamicSoundFXPlayer].
|
||||
##
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@tool
|
||||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
class_name DynamicSoundFXPlayer3D
|
||||
## 3D positional variant of [DynamicSoundFXPlayer].
|
||||
##
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@tool
|
||||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
class_name DynamicSoundPlayer
|
||||
## Continuous music player with intensity-blended layers and seamless playlist transitions.
|
||||
##
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@tool
|
||||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
class_name DynamicSoundPlayer2D
|
||||
## 2D positional variant of [DynamicSoundPlayer].
|
||||
##
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@tool
|
||||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
class_name DynamicSoundPlayer3D
|
||||
## 3D positional variant of [DynamicSoundPlayer].
|
||||
##
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
@icon("res://addons/gd-dynamic-sound/icon.svg")
|
||||
@icon("res://addons/gd-dynamic-sound/gd-dynamic-sound-icon.jpg")
|
||||
@tool
|
||||
class_name DynamicSoundPlaylist
|
||||
## The DynamicSound Holds onto all your music variants.
|
||||
|
|
|
|||
Loading…
Reference in New Issue