mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 05:33:11 +00:00
Merge pull request #43333 from YeldhamDev/global_rate_scale_min
Disallow setting the AudioServer's 'global_rate_scale' to a value equal or inferior to 0
This commit is contained in:
commit
dd851d8f91
@ -905,6 +905,8 @@ bool AudioServer::is_bus_channel_active(int p_bus, int p_channel) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void AudioServer::set_global_rate_scale(float p_scale) {
|
void AudioServer::set_global_rate_scale(float p_scale) {
|
||||||
|
ERR_FAIL_COND(p_scale <= 0);
|
||||||
|
|
||||||
global_rate_scale = p_scale;
|
global_rate_scale = p_scale;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user