Hi all,
First-time poster here. I'm not sure if this is an issue with Kha or if I'm doing something wrong. Let me outline my steps:
- I cloned the Empty project, created a 'Libraries' folder and cloned the zui library into it.
- Following the instructions on the wiki, I included zui into my project.kha file
- Following the lue_editor's project.kha as a template, I downloaded the font and included it in my project.kha
- Without making any changes to any .hx files, I use the build.bat to build for html5
The command prompt outputs this:
Generating Kha project.
Exporting asset 1 of 2 (helvetica_neue.ttf).
Press any key to continue...
When I look in the build folder all I see are a 'temp' and 'html5' folder. Both empty. Any help would be greatly appreciated
This is what my project.kha file looks like:
{
"format": 2,
"game": {
"name": "Empty",
"width": 640,
"height": 480
},
"assets": [
{
"file": "helvetica_neue.ttf",
"name": "helvetica_neue",
"size": 18,
"type": "font"
},
{
"file": "helvetica_neue.ttf",
"name": "helvetica_neue",
"size": 16,
"type": "font"
}
],
"libraries": [
"zui"
],
"rooms": [
{
"assets": [
"helvetica_neue18.kravur",
"helvetica_neue16.kravur"
],
"name": "level1",
"parent": null,
"neighbours": []
}
]
}