ConfigVariableInt64

from panda3d.core import ConfigVariableInt64
class ConfigVariableInt64

Bases:

Bases: ConfigVariable

This is a convenience class to specialize ConfigVariable as a 64-bit integer type.

Inheritance diagram

Inheritance diagram of ConfigVariableInt64

__getitem__(n: int) int
__init__(param0: ConfigVariableInt64)
__init__(name: str)
__init__(name: str, default_value: int, description: str, flags: int)
__init__(name: str, default_value: str, description: str, flags: int)
assign(value: int) ConfigVariableInt64
property default_value int

Returns the variable’s default value.

getDefaultValue() int

Returns the variable’s default value.

getValue() int

Returns the variable’s value.

getWord(n: int) int

Returns the variable’s nth value.

setValue(value: int)

Reassigns the variable’s local value.

setWord(n: int, value: int)

Reassigns the variable’s nth value. This makes a local copy of the variable’s overall value.

size() int

Returns the number of unique words in the variable.

property value int
Getter

Returns the variable’s value.

Setter

Reassigns the variable’s local value.