diff --git a/obj/NiControllerSequence.h b/obj/NiControllerSequence.h index 40f47757efd1f84f09333ffad1d3cedc704ac8e5..2a0dede420d4544ff92cb013112d48692877b7d6 100644 --- a/obj/NiControllerSequence.h +++ b/obj/NiControllerSequence.h @@ -103,6 +103,24 @@ public: CycleType GetCycleType() const; void SetCycleType( CycleType n ); + /*! Get Number of Controllers + * \return Number of total controllers in this sequence + * \sa GetControllerData + */ + int GetNumControllers() const; + + /*! Get Controller Priority + * \return Priority of a specific controller + * \sa GetControllerData, GetNumControllers, SetControllerPriority + */ + int GetControllerPriority( int controller ) const; + + /*! Get Controller Priority + * \return Priority of a specific controller + * \sa GetControllerData, GetNumControllers, GetControllerPriority + */ + void SetControllerPriority( int controller, int priority ); + protected: NiControllerManager * NiControllerSequence::Parent() const; NI_CONTROLLER_SEQUENCE_MEMBERS