Dec 12, 2013

[Unity3d] Background Image

41
You're almost there, with the 2nd camera approach. Here's how to do it:
  • Create a new camera (GameObject -> Create Other -> Camera), and name it "Background Camera".
  • Create a new GUI Texture (GameObject -> Create Other -> GUI Texture), and name it "Background Image".
  • Click the "Layer" dropdown menu in the Background Image's inspector pane, and select "Add Layer".
  • In the next free "User Layer" slot, create a new layer name called "Background Image". This will be directly under the layer named "Terrain" if you haven't yet added any others.
  • Select your Background Image in the hierarchy, and give it the desired texture, and set the x, y, width and height under "Pixel Inset" so that it fills the screen appropriately.
  • Near the top of the inspector window, Use the layer dropdown menu to assign your "Background Image" layer that you defined earlier to this gameobject.
  • Now select your Background Camera in the hierarchy, and adjust these settings in the inspector:
    • Un-Check Flare Layer and Audio Listener (but leave GUILayer enabled)
    • Set Clear Flags to Solid Color
    • Set Depth to -1
    • Set Culling Mask, first to "Nothing", and then to "Background Image"
  • Now Select you other (main) camera, and in the inspector:
    • Set its Clear Flags to "Depth Only"
    • Click its culling mask setting, and un-check "Background Image". This should result in the culling mask displaying as "Mixed ..."
Voila, this should give you your GUI Texture rendered by your background camera, behind everything else rendered by your main camera. And for any other additional cameras (eg, other camera angles) that you want to use, just repeat the last two steps on them.

Original Text: 

No comments:

Post a Comment