[유니티 스크립트 소스] 화면 캡처 png, jpg, tga, exr 파일로 저장
2020. 5. 8.
1. 네임스페이스 using System; using System.IO; 2. 소스 2.1 화면 캡처 후 jpg 파일로 저장 IEnumerator SaveScreeJpg(string filePath) { yield return new WaitForEndOfFrame(); Texture2D texture = new Texture2D(Screen.width, Screen.height); texture.ReadPixels(new Rect(0, 0, Screen.width, Screen.height), 0, 0); texture.Apply(); byte[] bytes = texture.EncodeToJPG(); File.WriteAllBytes(filePath, bytes); DestroyImmediate(te..