[Bug][Beta] Make bounce delay use fixed int (#6156)

Make bounce delay use fixed int
This commit is contained in:
Sirz Benjie 2025-07-26 20:58:06 -06:00 committed by GitHub
parent 2f1cf2fc13
commit ed8858e07d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1476,7 +1476,7 @@ export class StarterSelectUiHandler extends MessageUiHandler {
loop: -1, loop: -1,
// Make the initial bounce a little randomly delayed // Make the initial bounce a little randomly delayed
delay: randIntRange(0, 50) * 5, delay: randIntRange(0, 50) * 5,
loopDelay: 1000, loopDelay: fixedInt(1000),
tweens: [ tweens: [
{ {
targets: icon, targets: icon,