Trying to create a Rear View Mirror and I’m having problems with it.
Tried Using two cameras, 1 pointing forward and the 2nd one pointing backwards. Tried adding a GUI text on the 2nd one and made it reflective but it’s a no go.
Tried playing with layers and culling options but can’t get it to work.
Are you trying to make a reflective object in 3D space? This reqires Unity Pro so I wouldn’t know about that.
Are you trying to have a top portion of ther screen render whats behind you? Try using the View Port Rect on the camera to set where it renders on the screen.
You could also make a script that turns the camera around when you press a key.
That “boomerang” looks like some objects getting clipped, I’m guessing the capsule used in the FP Controller Prefab? Change the near clip plane of that rearview camera to something higher.
Unity has a default of 3 pixel shaded lights, then the rest go into vertex lit. If your labrynth is built up of very few polygons then vertexlit lights look pretty bad on them. You can do a few things to fix this:
Switch some lights to forcepixel, or up the amount of pixel lights used in the scene under the rendering options. It isn’t recommended to use too many pixel lights though because they’re pretty expensive performance wise.
Break up your geometry a little more and the vertex lights will start too look better.
Change your Diffuse materials to self-illuminated materials and “paint” the light into the alpha channels of your textures used.