Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Generic
- 메서드
- delegate
- InputManager
- 배열
- 자료구조
- invokec#events
- LINQ
- 장애물달리기
- 효과음
- skybox
- inputsystem
- BGM
- 프로그래머스
- 스택
- 람다식
- c#
- 코루틴
- 스파르타내일배움캠프
- 인터페이스
- ObjectPool
- 유니티
- 유한상태머신
- script
- 직렬화
- 비선형자료구조
- unity
- FSM
- soundmanager
- UI
Archives
- Today
- Total
목록스크린샷 (1)
Unity 개발일지
[Unity] 스크린샷 찍는 코드
오늘은 간단하게 Unity에서 스크린샷을 찍어 누끼를 따는데 도움이 되는 코드를 공유하고자 한다. private Texture2D ScreenShot(RenderTexture externalTexture){ Texture2D myTexture2D = new Texture2D(externalTexture.width, externalTexture.height); if (myTexture2D == null) { myTexture2D = new Texture2D(externalTexture.width, externalTexture.height); } //Make RenderTexture type variable RenderTexture tmp = Rende..
카테고리 없음
2024. 6. 4. 20:59