Christian Henschel
Software Engineer
© 2023 All rights reserved.
Tag Archives: screen
Render screen to texture in Unity (without Pro)
If you own a Unity Pro license you are able to draw the screen content to a texture by using a RenderTexture. An alternativ way for Unity Free users is the usage of Texture2D.ReadPixels. It can be used to capture the whole screen of the application or just a smaller part of it. In this…