Hello,
I am new to the panda3d scene and have been trying to get started.
However when I attempt to load the config file I receive the following error;
:util(error): Unable to open config/conf.prc
Known pipe types:
wglGraphicsPipe
(all display modules loaded.)
//This is what my code looks like;
from panda3d.core import loadPrcFile
loadPrcFile(“config/conf.prc”)
from direct.showbase.ShowBase import ShowBase
class MyGame(ShowBase):
def init(self):
super().init()
game = MyGame()
game.run()
//This is the code that the config file contains;
win-size 300 400
window-title My Game
//What am I doing incorrectly?