Panda3D
 All Classes Functions Variables Enumerations
config_collide.h
1 // Filename: config_collide.h
2 // Created by: drose (24Apr00)
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_COLLIDE_H
16 #define CONFIG_COLLIDE_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableBool.h"
21 #include "configVariableInt.h"
22 #include "configVariableDouble.h"
23 
24 NotifyCategoryDecl(collide, EXPCL_PANDA_COLLIDE, EXPTP_PANDA_COLLIDE);
25 
26 extern EXPCL_PANDA_COLLIDE ConfigVariableBool respect_prev_transform;
27 extern EXPCL_PANDA_COLLIDE ConfigVariableBool respect_effective_normal;
28 extern EXPCL_PANDA_COLLIDE ConfigVariableBool allow_collider_multiple;
29 extern EXPCL_PANDA_COLLIDE ConfigVariableBool flatten_collision_nodes;
30 extern EXPCL_PANDA_COLLIDE ConfigVariableDouble collision_parabola_bounds_threshold;
31 extern EXPCL_PANDA_COLLIDE ConfigVariableInt collision_parabola_bounds_sample;
32 extern EXPCL_PANDA_COLLIDE ConfigVariableInt fluid_cap_amount;
33 extern EXPCL_PANDA_COLLIDE ConfigVariableBool pushers_horizontal;
34 
35 extern EXPCL_PANDA_COLLIDE void init_libcollide();
36 
37 #endif
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as a floating-point type.
This is a convenience class to specialize ConfigVariable as an integer type.