1 NUUB question coming up...

Hi,
I just downloadet the Panda3d 1.3.2 and I have only one question that bothers me:

“Isn’t there a way to start&run a panda project in fullscreen mode instead of window mode???”

THX to anyone who might answer !!!

Go to your Panda install directory, and open the ‘etc’ folder. Inside that folder is a file named ‘Config.prc’.

If you search that file, there is a directive that looks like the following:

fullscreen   #f

Change #f to #t, and Panda will open in fullscreen mode.

maybe if you add

from pandac.PandaModules import loadPrcFileData
loadPrcFileData("", "fullscreen true")

in the first 2 lines of the example code.
havent tried it, thought.

THX mtomczak,
It worked like a charm.