본문 바로가기

전체 글28

[Utile] 4k Video Downloader Youtube영상 화질별로 다운받을 수 있는 프로그램 오디오, 자막도 구분해서 받을 수 있어서 좋다 https://www.4kdownload.com/ko/products/videodownloader-1 4K Video Downloader | PС와 macOS, Linux용 무료 Video Downloader 사상 최고로 단순한 비디오 다운로드 프로그램! YouTube 및 유사 서비스에서 비디오와 오디오를 macOS, PC, Linux로 완전 무료로 다운로드받자! www.4kdownload.com 2023. 6. 7.
[Unity] Cable Physics - 물리적용 된 케이블라인(Source) 물리적용된 밧줄 소스를 서치하다 발견한 자료 라인은 2D로 되어있음 # Unity cable component - verlet integration https://www.youtube.com/watch?v=VN21ROvrF2k https://github.com/NoxWings/Cable-Component GitHub - NoxWings/Cable-Component: Unity cable component implementation similar to the Unreal Engine one based on verlet integra Unity cable component implementation similar to the Unreal Engine one based on verlet integration... 2023. 3. 19.
[Unity] 지정한 해상도로 Build하기 - Script사용 작업 중 진행과정을 컨펌받고자 내부직원에게 빌드파일을 주곤했다. 직원들 간에 해상도 세팅이 달라 빌드한 결과물이 다르게 보일 때가 많아서 자주 사용했던 스크립트이다. Build Settings에서 처리해도 되지만 매번 세팅창을 여는 것이 귀찮아서 스크립트로 사용했다. int width = 1920;// 스크린 가로, 세로 int height = 1200; bool isFullScreen = false;// 전체화면 사용유무(true:전체화면모드,false:창모드) private Start() { Screen.SetResolution(width, height, isFullScreen); } 2023. 3. 19.
[Unity] Assembly Error(어셈블리에러) - PlasticSCM PlasticSCM 관련 어셈블리 에러 에러문구 제일 하단을 보면 친절하게 해결방법이 나와있다.(밑줄 친부분) Assembly /Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll' will not be loaded due to error: unityplastic references strong named System.Windows.Forms Assembly references:4.0.0.0. Found in project:2.0.0.0. Assembly Version Validation can be disabled Player Settings "Assembly Version Validation" 1.Player Settings .. 2023. 3. 19.