mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
a few more panda systems
This commit is contained in:
parent
1f59bdd691
commit
f558ff6450
@ -30,6 +30,7 @@
|
||||
#include "virtualFileMountMultifile.h"
|
||||
#include "virtualFileMountSystem.h"
|
||||
#include "virtualFileSimple.h"
|
||||
#include "pandaSystem.h"
|
||||
|
||||
#include "dconfig.h"
|
||||
|
||||
@ -172,6 +173,11 @@ init_libexpress() {
|
||||
VirtualFileSimple::init_type();
|
||||
|
||||
init_system_type_handles();
|
||||
|
||||
#ifdef HAVE_ZLIB
|
||||
PandaSystem *ps = PandaSystem::get_global_ptr();
|
||||
ps->add_system("zlib");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -18,8 +18,9 @@
|
||||
|
||||
#include "config_helix.h"
|
||||
#include "helixClient.h"
|
||||
#include "pandaSystem.h"
|
||||
|
||||
#include <dconfig.h>
|
||||
#include "dconfig.h"
|
||||
|
||||
DLLAccessPath statClnt;
|
||||
DLLAccessPath* GetDLLAccessPath()
|
||||
@ -32,5 +33,8 @@ NotifyCategoryDef(helix, "");
|
||||
|
||||
ConfigureFn(config_helix) {
|
||||
HelixClient::init_type();
|
||||
|
||||
PandaSystem *ps = PandaSystem::get_global_ptr();
|
||||
ps->add_system("Helix");
|
||||
}
|
||||
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "vrpnClient.h"
|
||||
#include "vrpnDialDevice.h"
|
||||
#include "vrpnTrackerDevice.h"
|
||||
#include "pandaSystem.h"
|
||||
|
||||
#include "dconfig.h"
|
||||
|
||||
@ -35,4 +36,7 @@ ConfigureFn(config_vrpn) {
|
||||
VrpnClient::init_type();
|
||||
VrpnDialDevice::init_type();
|
||||
VrpnTrackerDevice::init_type();
|
||||
|
||||
PandaSystem *ps = PandaSystem::get_global_ptr();
|
||||
ps->add_system("VRPN");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user