XML structured much better
This commit is contained in:
@ -18,13 +18,13 @@ add_subdirectory(save)
|
||||
|
||||
# Assets
|
||||
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_prefab(${LIMINAL_ASSETS_DIR}/VNTextbox.xml)
|
||||
tool_truetype(font_main ${DAWN_ASSETS_DIR}/ark-pixel.ttf)
|
||||
tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png)
|
||||
tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png)
|
||||
|
||||
tool_scene(${LIMINAL_ASSETS_DIR}/scenes/SceneBase.xml)
|
||||
tool_vnscene(${LIMINAL_ASSETS_DIR}/scenes/VNSceneTest.xml)
|
||||
|
||||
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/EthPrefab.xml)
|
||||
tool_texture(texture_eth ${LIMINAL_ASSETS_DIR}/textures/eth.png)
|
||||
tool_texture(texture_border ${LIMINAL_ASSETS_DIR}/textures/texture_test.png)
|
||||
tool_prefab(${LIMINAL_ASSETS_DIR}/prefabs/VNTextbox.xml)
|
@ -18,7 +18,7 @@ std::map<std::string, std::string> PrefabTool::getOptionalFlags() {
|
||||
int32_t PrefabTool::start() {
|
||||
File input = File(flags["input"]);
|
||||
if(!input.exists()) {
|
||||
std::cout << "Input file does not exist!" << std::endl;
|
||||
std::cout << "Input file " + input.filename + " does not exist!" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ std::map<std::string, std::string> SceneTool::getOptionalFlags() {
|
||||
int32_t SceneTool::start() {
|
||||
File input = File(flags["input"]);
|
||||
if(!input.exists()) {
|
||||
std::cout << "Input file does not exist!" << std::endl;
|
||||
std::cout << "Input file " + input.filename + " does not exist!" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ std::map<std::string, std::string> VNSceneTool::getOptionalFlags() {
|
||||
int32_t VNSceneTool::start() {
|
||||
File input = File(flags["input"]);
|
||||
if(!input.exists()) {
|
||||
std::cout << "Input file does not exist!" << std::endl;
|
||||
std::cout << "Input file " + input.filename + " does not exist!" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user