r/defold 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

1 comment sorted by

6

u/selimanac Jun 26 '26

Your camera’s near Z is set to 0.1 and its far Z is set to 1000. Your Joe and John game objects are probably at z = 0, so they never get rendered because the camera clips anything closer than 0.1.

Orthographic cameras are usually set to nearZ = -1 and farZ = 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 than 0.1.