Comment créer un cube à Ursina

from ursina import *
app = Ursina()
cube = Entity(model='cube', color=color.rgb(255, 0, 0))
app.run()
TheCoder1001