Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的 ursina 项目中添加这样的元素来选择 1000 到 100 万之间的数字
您可以使用Slider:
Slider
from ursina import * app = Ursina() slider = Slider(1000, 1000000) app.run()