Panda3D
 All Classes Functions Variables Enumerations
config_tform.h
1 // Filename: config_tform.h
2 // Created by: drose (23Feb00)
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_TFORM_H
16 #define CONFIG_TFORM_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableDouble.h"
21 #include "configVariableBool.h"
22 
23 NotifyCategoryDecl(tform, EXPCL_PANDA_TFORM, EXPTP_PANDA_TFORM);
24 
25 // Configure variables for tform package.
26 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_forward_speed;
27 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_reverse_speed;
28 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_rotate_speed;
29 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_dead_zone;
30 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_center;
31 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_dead_zone;
32 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_center;
33 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_ramp_up_time;
34 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_vertical_ramp_down_time;
35 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_ramp_up_time;
36 extern EXPCL_PANDA_TFORM ConfigVariableDouble drive_horizontal_ramp_down_time;
37 
38 extern EXPCL_PANDA_TFORM ConfigVariableDouble inactivity_timeout;
39 
40 extern EXPCL_PANDA_TFORM ConfigVariableBool trackball_use_alt_keys;
41 
42 #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.