Allow 0.1 step for emit speed and tempo

This commit is contained in:
Jage9
2026-02-22 22:21:27 -05:00
parent 0d506d8066
commit 12c7bd89ce
4 changed files with 13 additions and 13 deletions

View File

@@ -102,12 +102,12 @@ GLOBAL_ITEM_PROPERTY_METADATA: dict[str, dict[str, object]] = {
"emitSoundSpeed": {
"valueType": "number",
"tooltip": "Global emitted sound speed/pitch percent. 50 is normal.",
"range": {"min": 0, "max": 100, "step": 1},
"range": {"min": 0, "max": 100, "step": 0.1},
},
"emitSoundTempo": {
"valueType": "number",
"tooltip": "Global emitted sound tempo percent. 50 is normal.",
"range": {"min": 0, "max": 100, "step": 1},
"range": {"min": 0, "max": 100, "step": 0.1},
},
}