I have 8x8 pixel sprites and am trying to zoom on them as per the pixel art manual:
msg.post("@render:", "use_fixed_projection", { zoom = 4 })
When I don’t have the above line, I see my tiny tilemap at the bottom left corner of the screen. When I use the line, the whole screen is black. Based on the examples in the pixel art manual, it looks like the line zooms into the center of the screen, but it makes much more sense for me if the origin remains at the bottom left after zooming in. How can I do this? I’ve tried using a camera component that is centered at the origin, but the same all-black screen occurs.
When using camera, I use:
msg.post('/go#camera', 'acquire_camera_focus')
msg.post(@render:, use_camera_projection)
Thanks!