ConfigVariableBool
from panda3d.core import ConfigVariableBool
- class ConfigVariableBool
Bases:
ConfigVariable
This is a convenience class to specialize ConfigVariable as a boolean type.
Inheritance diagram
- __init__(*args, **kwargs)
- assign()
C++ Interface: assign(const ConfigVariableBool self, bool value)
- default_value
- getDefaultValue()
C++ Interface: get_default_value(ConfigVariableBool self)
- /**
Returns the variable’s default value.
*/
- getWord()
C++ Interface: get_word(ConfigVariableBool self, int n)
- /**
Returns the variable’s nth value.
*/
- get_default_value()
C++ Interface: get_default_value(ConfigVariableBool self)
- /**
Returns the variable’s default value.
*/
- get_word()
C++ Interface: get_word(ConfigVariableBool self, int n)
- /**
Returns the variable’s nth value.
*/
- setValue()
C++ Interface: set_value(const ConfigVariableBool self, bool value)
- /**
Reassigns the variable’s local value.
*/
- setWord()
C++ Interface: set_word(const ConfigVariableBool self, int n, bool value)
- /**
Reassigns the variable’s nth value. This makes a local copy of the
variable’s overall value.
*/
- set_value()
C++ Interface: set_value(const ConfigVariableBool self, bool value)
- /**
Reassigns the variable’s local value.
*/
- set_word()
C++ Interface: set_word(const ConfigVariableBool self, int n, bool value)
- /**
Reassigns the variable’s nth value. This makes a local copy of the
variable’s overall value.
*/
- value