-1

enter image description here

I need to add a element like this in my ursina project to select a number betwen 1000 and 1 Million

proking
  • 29
  • 5
  • Depending on which specific values you need, you might want to add the log values to emphasize smaller numbers, otherwise they take up only a tiny portion of your slider. – Jan Wilamowski Sep 22 '21 at 03:50

1 Answers1

1

You can use a Slider:

from ursina import *
app = Ursina()
slider = Slider(1000, 1000000)
app.run()
David Meu
  • 1,527
  • 9
  • 14