pythonursina

How to hide entities and colliders UI in ursina


Problem

How can I hide the Entities and Colliders bar

I attempted to hide the UI with: window.entities.enabled = False, then it gives me a error saying it doesn't work

I really don't know what's the problem and I searched all through the Internet even asked ChatGPT but I can't seem to find a helpful solution

Thank you, Ethan.


Solution

  • This worked for me:

    from ursina import Sprite, Texture, Ursina, window, color, Vec3
    app = Ursina(size=(1920, 1080))
    window.editor_ui.disable()
    

    Source: https://github.com/pokepetter/ursina/discussions/570