About to break VN Scene Parser

This commit is contained in:
2023-05-17 21:52:24 -07:00
parent 3b0ef97f89
commit 5a60c10049
11 changed files with 34 additions and 15 deletions

View File

@ -20,7 +20,7 @@ add_subdirectory(save)
set(LIMINAL_ASSETS_DIR ${DAWN_ASSETS_DIR}/games/liminal)
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/scene-base.xml)
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/scene-extend.xml)
# tool_vnscene(${LIMINAL_ASSETS_DIR}/test.xml)
tool_vnscene(${LIMINAL_ASSETS_DIR}/test.xml)
tool_prefab(${LIMINAL_ASSETS_DIR}/VNTextbox.xml)
tool_truetype(font_main ${DAWN_ASSETS_DIR}/ark-pixel.ttf)

View File

@ -5,11 +5,11 @@
#include "game/DawnGame.hpp"
#include "scenes/HelloWorldScene.hpp"
#include "scenes/TestScene.hpp"
#include "scenes/ExtendedScene.hpp"
using namespace Dawn;
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
// return new HelloWorldScene(game);
return new TestScene(game);
return new ExtendedScene(game);
}