Panda3D
 All Classes Functions Variables Enumerations
config_pgraphnodes.h
1 // Filename: config_pgraphnodes.h
2 // Created by: drose (05Nov08)
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_PGRAPHNODES_H
16 #define CONFIG_PGRAPHNODES_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "dconfig.h"
21 #include "configVariableBool.h"
22 #include "configVariableEnum.h"
23 #include "configVariableDouble.h"
24 #include "configVariableInt.h"
25 #include "configVariableString.h"
26 #include "lodNodeType.h"
27 
28 class DSearchPath;
29 
30 ConfigureDecl(config_pgraphnodes, EXPCL_PANDA_PGRAPHNODES, EXPTP_PANDA_PGRAPHNODES);
31 NotifyCategoryDecl(pgraphnodes, EXPCL_PANDA_PGRAPHNODES, EXPTP_PANDA_PGRAPHNODES);
32 
33 extern ConfigVariableEnum<LODNodeType> default_lod_type;
34 extern ConfigVariableBool support_fade_lod;
35 extern ConfigVariableDouble lod_fade_time;
36 extern ConfigVariableString lod_fade_bin_name;
37 extern ConfigVariableInt lod_fade_bin_draw_order;
38 extern ConfigVariableInt lod_fade_state_override;
39 extern ConfigVariableBool verify_lods;
40 
41 extern ConfigVariableInt parallax_mapping_samples;
42 extern ConfigVariableDouble parallax_mapping_scale;
43 
44 extern EXPCL_PANDA_PGRAPHNODES void init_libpgraphnodes();
45 
46 #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 a string type.
This class specializes ConfigVariable as an enumerated type.
This is a convenience class to specialize ConfigVariable as an integer type.
This class stores a list of directories that can be searched, in order, to locate a particular file...
Definition: dSearchPath.h:32