Replies: 4 comments 3 replies
-
For title you can - |
Beta Was this translation helpful? Give feedback.
-
window.borderless = False |
Beta Was this translation helpful? Give feedback.
-
Make sure you insert this code BEFORE initialising the Ursina class: window.borderless = False
window.title = "your title here"
window.icon = "path/to/icon.ico" |
Beta Was this translation helpful? Give feedback.
-
To set an icon and title to the game window, from ursina import *
app = Ursina(icon="C:\path\to\icon.png", title=None)
# ⬆ Remove none and replace it as your custom icon
app.run() This should work. I hope this helps. |
Beta Was this translation helpful? Give feedback.
-
How to a set a icon and title to the game window, Thanks!
Beta Was this translation helpful? Give feedback.
All reactions