first drivers variant

remade shape keys
separated keyframe channels
This commit is contained in:
devZoGok
2021-10-19 19:06:41 +03:00
parent c91a7f39f6
commit 179aa2789b
20 changed files with 295 additions and 107 deletions
-4
View File
@@ -8,14 +8,10 @@ namespace vb01{
class Animatable{
public:
enum Type{NODE, BONE};
Animatable();
virtual void animate(float, KeyframeChannel){}
inline Type getType(){return type;}
private:
protected:
Type type;
};
}