1

Here is the code that I wrote.

from ursina import *
from ursina.prefabs.first_person_controller import FirstPersonController

app = Ursina()

player = FirstPersonController()

app.run()

It is not a lot, but for some reason the window does not show up properly: enter image description here

EDIT:
I use python -v 3.10 and ursina -v 4.1.1 My operating system is windows 10

EDIT 2:
It doesn't work on python -v 3.7 either

HAPPY
  • 41
  • 4

1 Answers1

1

it works properly for me. there is some ways to fix that:

  • uninstall and reinstall Ursina

  • make ground for the player for example write:

ground = Entity(model='plane', texture='white_cube', collider='box')
Lixt
  • 201
  • 4
  • 19