반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- tcp네트워크
- 컬렉션 프레임
- 안드로이드 Application Lifecycle
- unity
- tcp
- 아이폰
- Collection Framework
- 명령어
- 나지보
- 어플
- 기업의 행포
- 벨팡
- 에셋
- 스랄 특성
- 자바
- 변경된 정보
- TCP 네트워크 방식의 연결
- 나지보 특성
- 안드로이드
- 게임
- 히오스
- End of Darkness
- 소캣(Socket)
- 리눅스
- game
- 포트(Port)
- 아이패드
- php 홈디렉토리 변경방법
- 집 정리
- 비행기 모드
Archives
- Today
- Total
Do Something IT
[Unity] Multiple Camera One RenderTexture Capture (여러대 카메라 한장으로 캡쳐하기) 본문
Unity3D
[Unity] Multiple Camera One RenderTexture Capture (여러대 카메라 한장으로 캡쳐하기)
아낙시만더 2018. 3. 8. 11:08반응형
여러대 카메라의 Depth가 셋팅이 미리 되어야 한다.
void Capture(Camera[] camera_) { RenderTexture renderTexture = RenderTexture.GetTemporary((int)csMyNGUIResolutionController.Instance.Width, (int)csMyNGUIResolutionController.Instance.Height, 16); RenderTexture.active = renderTexture; foreach (Camera camera in camera_) { if (camera.enabled) { //float fov = camera.fov; camera.targetTexture = renderTexture; camera.Render(); camera.targetTexture = null; //camera.fov = fov; } } _snapshotTexture = new Texture2D(renderTexture.width, renderTexture.height, TextureFormat.RGB24, true); _snapshotTexture.ReadPixels(new Rect(0, 0, renderTexture.width, renderTexture.height), 0, 0, true); _snapshotTexture.Apply(); _snapshotUITexture.mainTexture = _snapshotTexture; _snapshotUITexture.width = _snapshotTexture.width; _snapshotUITexture.height = _snapshotTexture.height; RenderTexture.active = null; RenderTexture.ReleaseTemporary(renderTexture); SetAfterSnapshot(); _originTimeScale = Time.timeScale; Time.timeScale = 0f; _shotEffectTweener.ResetToBeginning(); _shotEffectTweener.PlayForward(); }
반응형
'Unity3D' 카테고리의 다른 글
Unity TweenMaterialColor (0) | 2018.11.15 |
---|---|
UniRx Mouse Drag (0) | 2018.11.15 |
유니티 Ngui 체팅창 bbcord 이벤트 받기 (0) | 2018.01.10 |
[unity]Ngui Shader wants normals, but the mesh Mesh doesn't have them (0) | 2017.11.27 |
자바 스크립트에서 Csv unicode관련 문제 해결 방안 (0) | 2017.11.22 |
Comments