πŸ”§Rotation Settings

The rotation_settings section defines how the wheel spins, slows down, and displays rewards.

Syntax

rotation_settings:
  speeding_factor: <decimal>
  # not really change the speed
  target_speed: <number>
  # in ticks
  roll_time: <min-number>-<max-number>
  slowing_factor: <decimal>
  reward_show_time: <number>

speeding_factor

Default: 1.0

  • Controls how quickly the wheel accelerates when a spin starts.

  • Higher values make the wheel speed up faster, lower values create a smoother start.


target_speed

Default: 25

  • The maximum spin speed of the wheel.

  • This does not directly control visible rotation but sets a cap for how fast the wheel can go.

triangle-exclamation

roll_time

Default: 35-60 (in ticks)

  • Defines how long the wheel will spin before it begins to slow down.

  • The value can be a fixed number (e.g. 40) or a range (e.g. 35-60) for randomization.

  • 20 ticks = 1 second.


slowing_factor

Default: 1.0

  • Controls how quickly the wheel slows down after reaching its target speed.

  • Higher values make the wheel stop sooner, lower values make it spin longer.


reward_show_time

Default: 40

  • Duration (in ticks) that the winning reward is displayed after the wheel stops.

  • 20 ticks = 1 second.

Last updated