Panda3D
|
00001 // Filename: config_collide.h 00002 // Created by: drose (24Apr00) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) Carnegie Mellon University. All rights reserved. 00008 // 00009 // All use of this software is subject to the terms of the revised BSD 00010 // license. You should have received a copy of this license along 00011 // with this source code in a file named "LICENSE." 00012 // 00013 //////////////////////////////////////////////////////////////////// 00014 00015 #ifndef CONFIG_COLLIDE_H 00016 #define CONFIG_COLLIDE_H 00017 00018 #include "pandabase.h" 00019 #include "notifyCategoryProxy.h" 00020 #include "configVariableBool.h" 00021 #include "configVariableInt.h" 00022 #include "configVariableDouble.h" 00023 00024 NotifyCategoryDecl(collide, EXPCL_PANDA_COLLIDE, EXPTP_PANDA_COLLIDE); 00025 00026 extern EXPCL_PANDA_COLLIDE ConfigVariableBool respect_prev_transform; 00027 extern EXPCL_PANDA_COLLIDE ConfigVariableBool respect_effective_normal; 00028 extern EXPCL_PANDA_COLLIDE ConfigVariableBool allow_collider_multiple; 00029 extern EXPCL_PANDA_COLLIDE ConfigVariableBool flatten_collision_nodes; 00030 extern EXPCL_PANDA_COLLIDE ConfigVariableDouble collision_parabola_bounds_threshold; 00031 extern EXPCL_PANDA_COLLIDE ConfigVariableInt collision_parabola_bounds_sample; 00032 extern EXPCL_PANDA_COLLIDE ConfigVariableInt fluid_cap_amount; 00033 extern EXPCL_PANDA_COLLIDE ConfigVariableBool pushers_horizontal; 00034 00035 extern EXPCL_PANDA_COLLIDE void init_libcollide(); 00036 00037 #endif