Sometimes when animating client.pixel_x/y the viewport fails to render what's beyond the range, but not always? It's very difficult to pin down, but it seems as though in a test environment where certain conditions are met based off your eye's x/y and step_x/y, it fails to render, but moving slightly fixes it.
I'll reply back to this with as much information as I can, but I can't promise it'll be too helpful outside of some gifs of it happening.
shakeCamera(var/attDir,var/intensity = 20,var/duration = 5)
animate(client)
client.pixel_y = (!!(attDir & NORTH) - !!(attDir & SOUTH)) * intensity
client.pixel_x = (!!(attDir & EAST) - !!(attDir & WEST)) * intensity
animate(client, pixel_y = 0, pixel_x = 0, time = duration, easing=ELASTIC_EASING)
verb
_DEBUGshake()
shakeCamera(dir,200,100)
I try using shake whilst facing NORTH, screen fails to render.
I move up slightly, and do the same