#ifndef DRIVER_H #define DRIVER_H #include "keyframeChannel.h" #include namespace vb01{ class Animatable; class Driver{ public: enum VariableType{ POS_X, POS_Y, POS_Z, ROT_W, ROT_X, ROT_Y, ROT_Z, SCALE_X, SCALE_Y, SCALE_Z }; Driver(Animatable*, KeyframeChannel, VariableType); void drive(float); static VariableType getDriverVariableType(std::string); inline VariableType getType(){return type;} inline KeyframeChannel& getKeyframeChannel(){return keyframeChannel;} inline Animatable* getAnimatable(){return animatable;} private: VariableType type; KeyframeChannel keyframeChannel; Animatable *animatable = nullptr; }; } #endif