How to have a closer view on screen (SOLVED)

My sprites are always really small compared to the size of the window this is what I get when I run my game

Is there a way so it looks more like this? (down)

Sure, you can change the default view projection from stretch to a fixed projection with zoom:

msg.post("@render:", "use_fixed_projection", { near = -1, far = 1, zoom = 2 })
5 Likes

Ok thanks