vectozavr-shooter/engine/animation/ARotateLeft.h

34 lines
828 B
C
Raw Normal View History

2021-11-01 17:08:36 +03:00
//
// Created by Иван Ильин on 01.11.2021.
//
#ifndef SHOOTER_AROTATELEFT_H
#define SHOOTER_AROTATELEFT_H
#include "Animation.h"
#include "../Object.h"
class ARotateLeft final : public Animation {
private:
const std::weak_ptr<Object> _object;
const double _rotationValue;
void update() override {
2021-11-09 22:54:20 +03:00
auto obj = _object.lock();
if (obj == nullptr) {
2021-11-01 17:08:36 +03:00
stop();
return;
}
2021-11-09 22:54:20 +03:00
obj->rotateLeft(_rotationValue*dprogress());
2021-11-01 17:08:36 +03:00
}
public:
ARotateLeft(std::weak_ptr<Object> object, double r, double duration = 1, LoopOut looped = LoopOut::None,
InterpolationType interpolationType = InterpolationType::Bezier)
: Animation(duration, looped, interpolationType), _object(object), _rotationValue(r) {}
};
#endif //SHOOTER_AROTATELEFT_H