32 lines
836 B
C++
32 lines
836 B
C++
// Copyright (c) 2022 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#include "VisualNovelChangeSimpleBackgroundEvent.hpp"
|
|
#include "game/DawnGame.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
VisualNovelChangeSimpleBackgroundEvent::VisualNovelChangeSimpleBackgroundEvent(
|
|
VisualNovelManager *manager, Texture *texture
|
|
) : IVisualNovelEvent(manager) {
|
|
this->texture = texture;
|
|
}
|
|
|
|
void VisualNovelChangeSimpleBackgroundEvent::onStart(IVisualNovelEvent *prev) {
|
|
auto back = this->manager->getScene()
|
|
->findComponent<SimpleVisualNovelBackground>()
|
|
;
|
|
|
|
assertNotNull(back);
|
|
back->setTexture(this->texture);
|
|
}
|
|
|
|
bool_t VisualNovelChangeSimpleBackgroundEvent::onUpdate() {
|
|
return false;
|
|
}
|
|
|
|
void VisualNovelChangeSimpleBackgroundEvent::onEnd() {
|
|
|
|
} |