I am trying to realize cutscenes which I want to look like animated manga. To be more precise : I am having 2D images and I want to play them using a script to make them fade one to another ( like old cartoons were made , almost ) with voice cover of course.
I am not very sure how to do this. I don’t know how a fading script would look like and what should I use GUI or Plane.
If it were me, I’d use actual mesh objects – like planes – to display the comic panels. I’d likely make a Transparent Unlit material for each unique image, changing the texture properties appropriately (Non Power of 2, for instance). The materials would be added to planes.
For animating them, my first thought would be to parent all the planes to an empty GameObject, and then animate them within Unity’s Animation window, which is good enough for simple, timed motions like these. You can animate both movement and transparency in the Animation window. The animation of the comic would then be saved, played within the game, and paused/restarted based on user input (depending on how complicated your comic would be).
Basically you have 2 main methods. One is to create an object with a texture that when viewed by different aspect ratios it doesn’t occlude any important parts of the image. The Other is first detect what aspect ratio the build is playing in, then load one of several different objects that have each been built in their own aspects. The second requires more objects, and possibly the use of the Resources folder, so consider the first =]