본문 바로가기

Software23

[Davinci Resolve] Noise Reduction 1. Effects Library > Audio FX > Noise Reduction > 클립으로 끌어오기 주변 소음을 없애는 방법 2021. 8. 27.
[Davinci Resolve] 편집 속도 빠르게 설정하기 1. 수동으로 플레이하기 Davinci Resolve > preferences > user > playback settings > Manual 선택, 하위항목 선택 2. 보이는 해상도 줄이기 File > project settings > optimized media and render cache > optimized media resolution > half 이하 선택 > optimized media format > DNxHR LB 선택 3. 재생 해상도 줄이기 playback > proxy mode > half resolution > render cache > user 4. Media pool 클립 해상도 낮추기 클립 우클릭 > generator optimized media 5. Timeline 사전 .. 2021. 8. 27.
[Davinci Resolve] 캐시 저장 및 삭제 1. 캐시 저장 폴더 지정하기 File > project setting > master settings > working folders > Browse 폴더지정 2. project별 캐시 삭제하기 playback > delete render cache > all 2021. 8. 27.
[Unity] 6. 반복문 1. while문 while(조건){ 로직 } *break : 반복 중지 while (health)>0) { health - - ; if (health > 0 ) Debug.Log("독 데미지를 입었습니다." + health); else Debug.Log("사망하였습니다.); if (health == 10) { Debug.Log("해독제를 사용합니다."); break; } 2. for문 for(연산될 변수 ; 조건 ; 연산) { 로직 } 변수를 가지고 연산을 통해 조건으로 몇번을 한다. for (int count = 0 ; count < 10 ; count++ ) { health ++ ; Debug.Log("붕대로 치료 중..." + health); } #count가 0에서 9까지 다음 로직을 출력해라... 2021. 8. 25.