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
-
TypedSkel(void)
-
static TypeHandle get_class_type(void)
-
int get_value(void) const
Retreives a value that was previously stored.
-
int get_value_alt(void) const
Retreives a value that was previously stored. Exact same functionality as
get_value
, except that this isn’t an inline function.
-
void set_value(int n)
These inline functions allow you to get and set _value.
Stores an integer value.
-
TypedSkel(void)