BasicSkel

from panda3d.skel import BasicSkel
class BasicSkel

Bases:

This is the most basic of the skeleton classes. It stores an integer, and will return it on request.

The skeleton classes are intended to help you learn how to add C++ classes to panda. See also the manual, “Adding C++ Classes to Panda.”

Inheritance diagram

Inheritance diagram of BasicSkel

__init__()
__init__(param0: BasicSkel)
getValue() int

Retreives a value that was previously stored.

getValueAlt() int

Retreives a value that was previously stored. Exact same functionality as getValue(), except that this isn’t an inline function.

setValue(n: int)

These inline functions allow you to get and set _value.

setValueAlt(n: int)

Stores an integer value. Exact same functionality as setValue(), except that this isn’t an inline function.