Fixed more font stuff, works really really good now.

This commit is contained in:
2023-01-14 23:34:15 -08:00
parent 0558b3bb25
commit 18d3b074f9
14 changed files with 81 additions and 25 deletions

View File

@ -23,7 +23,7 @@ std::vector<Asset*> PokerVNScene::getRequiredAssets() {
}
void PokerVNScene::vnStage() {
this->renderTarget.setClearColor(COLOR_RED);
this->renderTarget.setClearColor(COLOR_BLACK);
this->camera->setRenderTarget(&this->renderTarget);
auto pixelPerfectCamera = this->camera->item->addComponent<PixelPerfectCamera>();

View File

@ -25,7 +25,6 @@ namespace Dawn {
void stage() override {
this->camera = Camera::create(this);
this->camera->transform->lookAt(glm::vec3(300, 300, 300), glm::vec3(0, 0, 0));
this->subScene.stage();

View File

@ -40,7 +40,7 @@ namespace Dawn {
vnManager, &texture->texture
);
start->then(new VisualNovelTextboxEvent(vnManager, penny->getComponent<VisualNovelCharacter>(), "scene.1.1"));
start->then(new VisualNovelTextboxEvent(vnManager, penny->getComponent<VisualNovelCharacter>(), "1234"));
return start;
}