- 最后登录
- 2019-12-2
- 注册时间
- 2012-8-25
- 阅读权限
- 90
- 积分
- 34660
- 纳金币
- 38268
- 精华
- 111
|
- IEnumerator Photo()
- {
- int m_width = (int)Screen.width;
- int m_height = (int)Screen.height;
- yield return new WaitForEndOfFrame();
- cutImage = new Texture2D (m_width, m_height,TextureFormat.RGB24, false);
- cutImage.ReadPixels(new Rect(0,0,m_width, m_height),0,0, true);
- cutImage.Apply();
- byte[] byt = cutImage.EncodeToPNG();
- }
复制代码 |
|