Hi,
I downloaded NAP 0.3, created a new project and built it in debug mode on macOS Sierra.
When I open Napkin and open the app_structure with file>open, Napkin crashes immediately with Segmentation fault: 11. After that, every time I open Napkin it crashes again (I think because it auto-loads the previously selected app_structure).
In the Release build this does not happen.
My entire app_structure.json is as follows:
{
"Objects": [
{
"Type": "nap::RenderWindow",
"mID": "Window",
"Width": 1280,
"Height": 720,
"Borderless": false,
"Resizable": true,
"Title": "TestProject",
"Sync": false,
"ClearColor": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 1.0
}
},
{
"Type": "nap::Scene",
"mID": "Scene",
"Entities": []
}
]
}
Casi