Set Max Clone delay to 2.0s

This commit is contained in:
Bruno Herbelin
2022-04-10 23:32:44 +02:00
parent d314f1bae2
commit f039755bde
3 changed files with 3 additions and 3 deletions

View File

@@ -187,7 +187,7 @@ void CloneSource::update(float dt)
void CloneSource::setDelay(double second)
{
delay_ = CLAMP(second, 0.0, 1.0);
delay_ = CLAMP(second, 0.0, 2.0);
}
void CloneSource::play (bool on)