Comment fermer l'écran d'Ursina
from ursina import *
app = Ursina()
def input(key):
if key == "escape":
# Escape Key Pressed... Quit
quit()
app.run()
Stormy Spider