Defold build result only showing black screen (SOLVED)


I build this my project, all I see is a black screen and no indication of physical debugging.
The demo project was showing up fine, and the screen was showing up halfway through.

The display is set to 1152x1152. The game has no camera which means that it will always center on 576x576. Your level and player is spawned at 0x0. When you zoom in 4 times you will still center on 576x576 but you will no longer see the level as it is outside the view at 0x0.

To solve this you can spawn your level and player at 576x576 instead of 0x0 or even better is to add a camera and move it so that it centers on 0x0.

8 Likes

It’s working! Thank you very much.
10

5 Likes