Merge pull request #136 from lioncash/rainsplash

CRainSplashGenerator: Amend lower bound constant for speed in SSplashLine::Update()
This commit is contained in:
Phillip Stephens 2020-01-30 20:12:11 -08:00 committed by GitHub
commit 918f1a9fcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ void CRainSplashGenerator::SSplashLine::Update(float dt, CStateManager& mgr) {
x15_length -= 1; x15_length -= 1;
} else { } else {
x16_active = false; x16_active = false;
xc_speed = mgr.GetActiveRandom()->Range(0.015625f, 8.f); xc_speed = mgr.GetActiveRandom()->Range(4.0f, 8.0f);
x10_zParabolaHeight = mgr.GetActiveRandom()->Range(0.015625f, 0.03125f); x10_zParabolaHeight = mgr.GetActiveRandom()->Range(0.015625f, 0.03125f);
x4_xEnd = mgr.GetActiveRandom()->Range(-0.125f, 0.125f); x4_xEnd = mgr.GetActiveRandom()->Range(-0.125f, 0.125f);
x8_yEnd = mgr.GetActiveRandom()->Range(-0.125f, 0.125f); x8_yEnd = mgr.GetActiveRandom()->Range(-0.125f, 0.125f);