Panda3D
|
00001 // Filename: config_tform.h 00002 // Created by: drose (23Feb00) 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_TFORM_H 00016 #define CONFIG_TFORM_H 00017 00018 #include "pandabase.h" 00019 #include "notifyCategoryProxy.h" 00020 #include "configVariableDouble.h" 00021 #include "configVariableBool.h" 00022 00023 NotifyCategoryDecl(tform, EXPCL_PANDA_TFORM, EXPTP_PANDA_TFORM); 00024 00025 // Configure variables for tform package. 00026 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_forward_speed; 00027 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_reverse_speed; 00028 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_rotate_speed; 00029 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_dead_zone; 00030 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_center; 00031 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_dead_zone; 00032 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_center; 00033 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_ramp_up_time; 00034 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_ramp_down_time; 00035 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_ramp_up_time; 00036 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_ramp_down_time; 00037 00038 extern EXPCL_PANDA_TFORM ConfigVariableDouble inactivity_timeout; 00039 00040 extern EXPCL_PANDA_TFORM ConfigVariableBool trackball_use_alt_keys; 00041 00042 #endif