Panda3D
 All Classes Functions Variables Enumerations
config_physx.h
1 // Filename: config_physx.h
2 // Created by: enn0x (01Sep09)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef CONFIG_PHYSX_H
16 #define CONFIG_PHYSX_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableBool.h"
21 #include "configVariableEnum.h"
22 #include "configVariableInt.h"
23 #include "dconfig.h"
24 
25 #include "physxEnums.h"
26 
27 ConfigureDecl(config_physx, EXPCL_PANDAPHYSX, EXPTP_PANDAPHYSX);
28 NotifyCategoryDecl(physx, EXPCL_PANDAPHYSX, EXPTP_PANDAPHYSX);
29 
30 extern EXPCL_PANDAPHYSX ConfigVariableBool physx_want_vrd;
31 extern EXPCL_PANDAPHYSX ConfigVariableString physx_vrd_host;
32 extern EXPCL_PANDAPHYSX ConfigVariableInt physx_vrd_port;
33 extern EXPCL_PANDAPHYSX ConfigVariableInt physx_internal_threads;
34 extern EXPCL_PANDAPHYSX ConfigVariableEnum<PhysxEnums::PhysxUpAxis> physx_up_axis;
35 
36 extern EXPCL_PANDAPHYSX void init_libphysx();
37 
38 #endif // CONFIG_PHYSX_H
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as a string type.
This class specializes ConfigVariable as an enumerated type.
This is a convenience class to specialize ConfigVariable as an integer type.