27 lines
597 B
C++
27 lines
597 B
C++
// Copyright (c) 2023 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#pragma once
|
|
#include "VNAnimateEvent.hpp"
|
|
|
|
namespace Dawn {
|
|
template<typename T>
|
|
class VNSetEvent : public VNAnimateEvent<T> {
|
|
public:
|
|
StateProperty<T> *modifies = nullptr;
|
|
|
|
protected:
|
|
void onStart() override {
|
|
assertNotNull(this->modifies);
|
|
this->from = modifies->getValue();
|
|
|
|
VNAnimateEvent<T>::onStart();
|
|
}
|
|
|
|
void setValue(T value) override {
|
|
modifies->setValue(value);
|
|
}
|
|
};
|
|
} |