pythonursina

Setting up a definite spawn point for FirstPersonController in Ursina


I have two questions.


Solution

  • The FirstPersonController can be given a position:

    player = FirstPersonController(position=(10, 0, 10))
    

    This is also documented in the ursina cheat sheet.

    If you can't move around you may be stuck inside a block. Try using space to jump out. In case you're falling through the ground you may have forgotten to set a collider on it. Please show your relevant code.