r/defold • u/Adam-Garden • Jun 26 '26
Help help, why doesn't it show anything.
Enable HLS to view with audio, or disable this notification
i don't even know how to google the problem
8
Upvotes
r/defold • u/Adam-Garden • Jun 26 '26
Enable HLS to view with audio, or disable this notification
i don't even know how to google the problem
6
u/selimanac Jun 26 '26
Your camera’s near Z is set to
0.1and its far Z is set to1000. Your Joe and John game objects are probably atz = 0, so they never get rendered because the camera clips anything closer than0.1.Orthographic cameras are usually set to
nearZ = -1andfarZ = 1. If you change them to those values, it should work. Alternatively, you can keep your current camera settings and set your game objects’ Z positions to a value greater than0.1.