My launches on windows currently is a bat file that does this:
"C:\Program Files (x86)\Panda3D\panda3dw.exe" -t splash_img=http://katana.aff2aw.com/d/img/download.png -f aff2aw.p3d
I mainly need to set the splash screen and “-f” the update option. Could this be some how done through the flags in aff2aw.p3d ?
My aff2aw.p3d is just a shell:
class aff2aw(p3d):
""" empty holder p3d that should download all other packadges """
config(
display_name = "AFF:Second Anterean War",
platform_specific = False)
require('code')
require('data')
mainModule('c')
I am looking for some thing like this:
class aff2aw(p3d):
""" empty holder p3d that should download all other packadges """
config(
display_name = "AFF:Second Anterean War",
platform_specific = False)
require('code')
require('data')
mainModule('c')
addOption("-f")
addOption("-t plash_img=http://katana.aff2aw.com/d/img/download.png")
Thanks!
EDIT:
Maybe combine this with the: panda3d.org/manual/index.php/P … g_settings