Is it Possable to make a Custom Camera? That does not use the camera component or nothing in that matter? I would like to know how to make my own camera component (if thats even possable) lol Thanks for any help!
Sure it is. You’ve got access to some drawing function listed here Unity - Scripting API: Graphics
I don’t know how to make sure the performance is good, but there you have it.
public class MyCustomCamera : MonoBehaviour
{
public Texture aTexture;
void OnGUI() {
if (Event.current.type.Equals(EventType.Repaint))
Graphics.DrawTexture(new Rect(100, 100, 200, 200), aTexture);
}
}