DS Dictator
That's good enough for me. Thank you very much
Edit: I managed to create a triple screen layout script for the 3DS videos now.
The only notable change from the DS phat script for this effect was:
To this:
For the video resolution question on Anri-chan* the DS was 2/1. The 3DS is 1200/480
Note Bilinear Resize on the 3DS script looks nicer if the Top screen uses 3D graphics and not 2D pixel sprites (you use PointResize).
* Only if you were planning to make a triple screen layout.
Edit: I managed to create a triple screen layout script for the 3DS videos now.
The only notable change from the DS phat script for this effect was:
Code:
miniScreens = last upperScreen = Crop(0,0,256,192).PointResize(512,384) lowerScreen = Crop(0,192,256,192).PointResize(512,384)
To this:
Code:
miniScreens = last upperScreen = Crop(0,0,400,240).BilinearResize(800,480) lowerScreen = Crop(0,240,400,240).PointResize(800,480)
For the video resolution question on Anri-chan* the DS was 2/1. The 3DS is 1200/480
Note Bilinear Resize on the 3DS script looks nicer if the Top screen uses 3D graphics and not 2D pixel sprites (you use PointResize).
* Only if you were planning to make a triple screen layout.