Panda3D
|
00001 // Filename: config_chan.h 00002 // Created by: drose (28Feb00) 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_CHAN_H 00016 #define CONFIG_CHAN_H 00017 00018 #include "pandabase.h" 00019 #include "notifyCategoryProxy.h" 00020 #include "configVariableBool.h" 00021 #include "configVariableInt.h" 00022 00023 // Configure variables for chan package. 00024 NotifyCategoryDecl(chan, EXPCL_PANDA_CHAN, EXPTP_PANDA_CHAN); 00025 00026 EXPCL_PANDA_CHAN extern ConfigVariableBool compress_channels; 00027 EXPCL_PANDA_CHAN extern ConfigVariableInt compress_chan_quality; 00028 EXPCL_PANDA_CHAN extern ConfigVariableBool read_compressed_channels; 00029 EXPCL_PANDA_CHAN extern ConfigVariableBool interpolate_frames; 00030 EXPCL_PANDA_CHAN extern ConfigVariableBool restore_initial_pose; 00031 EXPCL_PANDA_CHAN extern ConfigVariableInt async_bind_priority; 00032 00033 #endif