I am using the Python Ursina
game engine to make a 3D character. I want to keep the window always on top, like a picture-in-picture video. How would I do this, currently my code is as follows...
from ursina import *
app = Ursina()
cube = Entity(model='cube')
def update():
cube.rotation_y += 1
app.run()
The code runs fine, but it is always behind the other windows I open. Any advice or solutions out there?
You can use win32 gui