In earlier versions of the OHR, I could "shake the camera" up and down by using pan camera on a 16x20 screen. I'm not able to do this anymore, and it both ruins one of the visual effects in my old games and is keeping me from getting a scene to work in my latest one.
Are there any workarounds?
This is the script I'm trying to use:
Code: Select all
script, shake, begin
pancamera(up,1,20),waitforcamera
pancamera(down,2,20),waitforcamera
pancamera(up,2,20),waitforcamera
pancamera(down,1,20),waitforcamera
end
I don't want to have to put the hero in the center of the screen and use a wrapped edge setting because that would involve a lot of changes I wouldn't be happy about making, but it might be the only way. Any advice?