vectozavr-shooter/engine/animation/ATranslate.h

33 lines
747 B
C++

//
// Created by Иван Ильин on 29.01.2021.
//
#ifndef ENGINE_ATRANSLATE_H
#define ENGINE_ATRANSLATE_H
#include "Animation.h"
#include "../Object.h"
class ATranslate : public Animation {
private:
std::shared_ptr<Object> _object;
Point4D value;
public:
ATranslate(std::shared_ptr<Object> object, const Point4D& t, double duration = 1, LoopOut looped = LoopOut::None, InterpolationType interpolationType = InterpolationType::bezier) {
_object = object;
_duration = duration;
_looped = looped;
_intType = interpolationType;
value = t;
}
bool update() override {
_object->translate(value * _dp);
return updateState();
}
};
#endif //INC_3DZAVR_ATRANSLATE_H