mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-08 00:19:29 +02:00
[Bug][Beta] Make bounce delay use fixed int (#6156)
Make bounce delay use fixed int
This commit is contained in:
parent
2f1cf2fc13
commit
ed8858e07d
@ -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,
|
||||||
|
Loading…
Reference in New Issue
Block a user