vectozavr-shooter/engine/animation/ATranslateToPoint.h

38 lines
885 B
C++

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