Ursina engine not loading screen (FIXED)

Question:

I want to make a game in ursina but the entity’s wouldn’t load and the window would immediately close and i have pip installed it too. Heres the code

from ursina import *

app = Ursina()

test_square = Entity(model = 'circle', color = color.red)

app.run

and it outputs this.

Known pipe types:
  wglGraphicsPipe
(3 aux display modules not yet loaded.)
:pnmimage:png(warning): iCCP: known incorrect sRGB profile
Asked By: thecodepro90

||

Answers:

Your code should be this:

from ursina import *

app = Ursina()

test_square = Entity(model = 'circle', color = color.red)

app.run()
Answered By: Tanay

its normal, wait for a few seconds for the screen to load.

Answered By: Coop Good
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.