TypedSkel

from panda3d.skel import TypedSkel
class TypedSkel

Bases: TypedObject

Skeleton object that inherits from TypedObject. 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 TypedSkel

__init__(*args, **kwargs)
getClassType()

C++ Interface: get_class_type()

getValue()

C++ Interface: get_value(TypedSkel self)

/**
  • Retreives a value that was previously stored.

*/

getValueAlt()

C++ Interface: get_value_alt(TypedSkel self)

/**
  • Retreives a value that was previously stored. Exact same functionality as

  • get_value, except that this isn’t an inline function.

*/

get_class_type()

C++ Interface: get_class_type()

get_value()

C++ Interface: get_value(TypedSkel self)

/**
  • Retreives a value that was previously stored.

*/

get_value_alt()

C++ Interface: get_value_alt(TypedSkel self)

/**
  • Retreives a value that was previously stored. Exact same functionality as

  • get_value, except that this isn’t an inline function.

*/

setValue()

C++ Interface: set_value(const TypedSkel self, int n)

// These inline functions allow you to get and set _value.

/**
  • Stores an integer value.

*/

setValueAlt()

C++ Interface: set_value_alt(const TypedSkel self, int n)

// These do the same thing as the functions above.

/**
  • Stores an integer value. Exact same functionality as set_value, except

  • that this isn’t an inline function.

*/

set_value()

C++ Interface: set_value(const TypedSkel self, int n)

// These inline functions allow you to get and set _value.

/**
  • Stores an integer value.

*/

set_value_alt()

C++ Interface: set_value_alt(const TypedSkel self, int n)

// These do the same thing as the functions above.

/**
  • Stores an integer value. Exact same functionality as set_value, except

  • that this isn’t an inline function.

*/