Website | Source

Install: python -m pip install ursina

Depends on Panda3D

Simple example

from ursina import *

app = Ursina()

player = Entity(model='cube', color=color.orange, scale_y=2)

def update():   # update gets automatically called.
    player.x += held_keys['d'] * .1
    player.x -= held_keys['a'] * .1

app.run()   # opens a window and starts the game.

Run: python ursina_game.py


Tags: gamedev   python  

Last modified 10 May 2022