ConfigVariableInt

from panda3d.core import ConfigVariableInt
class ConfigVariableInt

Bases: ConfigVariable

This is a convenience class to specialize ConfigVariable as an integer type.

Inheritance diagram

Inheritance diagram of ConfigVariableInt

__init__(*args, **kwargs)
assign()

C++ Interface: assign(const ConfigVariableInt self, int value)

default_value
getDefaultValue()

C++ Interface: get_default_value(ConfigVariableInt self)

/**
  • Returns the variable’s default value.

*/

getValue()

C++ Interface: get_value(ConfigVariableInt self)

/**
  • Returns the variable’s value.

*/

getWord()

C++ Interface: get_word(ConfigVariableInt self, int n)

/**
  • Returns the variable’s nth value.

*/

get_default_value()

C++ Interface: get_default_value(ConfigVariableInt self)

/**
  • Returns the variable’s default value.

*/

get_value()

C++ Interface: get_value(ConfigVariableInt self)

/**
  • Returns the variable’s value.

*/

get_word()

C++ Interface: get_word(ConfigVariableInt self, int n)

/**
  • Returns the variable’s nth value.

*/

setValue()

C++ Interface: set_value(const ConfigVariableInt self, int value)

/**
  • Reassigns the variable’s local value.

*/

setWord()

C++ Interface: set_word(const ConfigVariableInt self, int n, int 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 ConfigVariableInt self, int value)

/**
  • Reassigns the variable’s local value.

*/

set_word()

C++ Interface: set_word(const ConfigVariableInt self, int n, int value)

/**
  • Reassigns the variable’s nth value. This makes a local copy of the

  • variable’s overall value.

*/

value