ARTICLE AD BOX
from ursina import *
app = Ursina()
ground = Entity(
model = 'cube',
color = color.magenta,
z = -.1,
y = -3,
origin = (0, .5),
scale = (50, 1, 10),
collider = 'box',
)
app.run()
Above is my code. I am writing in VS code. However it is throwing me an error message.
"(" was not closed pylance [Ln4, Col 16]I don't know what is the problem with my code since the parentheses is closed just before the app.run() line. Does anyone have a solution for what I am facing?
