반응형 전체 글49 [C# 공부] 각종 유용한 사이트 모음 대부분은 아시는 유용한 사이트 모음입니다. 믹사모 캐릭터 리깅 및 애니매이션을 구할 수 있습니다. https://www.mixamo.com/#/ Mixamo www.mixamo.com CG Trader 여러가지 3D 모델들이 있습니다. https://www.cgtrader.com/ CGTrader - 3D Model Store Join the fastest-growing 3D model marketplace today! www.cgtrader.com TurboSquid 여러가지 3D 모델들이 있습니다. https://www.turbosquid.com/ko/ 전문가용 3D 모델 :: TurboSquid 자동차, 사람, 질감, 건축 모델 등의 방대한 온라인 카탈로그에서 프로젝트의 3D 모델을 구입하십시오. .. 2023. 1. 12. [프로그래머스 Lv.1 C++/C#] 햄버거 만들기 C++ 답안입니다. #include #include using namespace std; int solution(vector ingredient) { int answer = 0; vector burger = { -1 }; for (int x : ingredient) { if (burger.back() == 1 && x == 2) { burger.back() = 12; } else if (burger.back() == 12 && x == 3) { burger.back() = 123; } else if (burger.back() == 123 && x == 1) { burger.pop_back(); answer++; } else burger.push_back(x); } return answer; } C# 답안.. 2023. 1. 11. [C# 공부] Unity UniTask UniTask 바로가기 https://github.com/Cysharp/UniTask GitHub - Cysharp/UniTask: Provides an efficient allocation free async/await integration for Unity. Provides an efficient allocation free async/await integration for Unity. - GitHub - Cysharp/UniTask: Provides an efficient allocation free async/await integration for Unity. github.com UniTask 란? UniTask는 Unity용 async-await 통합 패키지 입니다. C#의 Task, async.. 2023. 1. 9. [Playfab] Playfab 시작하기 https://azure.microsoft.com/ko-kr/products/playfab/#overview PlayFab | Microsoft Azure Azure PlayFab은 라이브 게임의 빌드와 운영을 위한 종합적인 LiveOps 백 엔드 플랫폼입니다. 각종 클라우드, 디바이스 및 게임 엔진에서 분석과 전송을 이용하세요. azure.microsoft.com 이미 Playfab 계정이 있으신분들은 바로 여기로 접속하시고, 7번 설명으로 이동하시면 됩니다. https://learn.microsoft.com/ko-kr/gaming/playfab/sdks/unity3d/quickstart#download-and-install-playfab-sdk Unity3D 빠른 시작 - PlayFab 이 가이드는 .. 2023. 1. 8. 이전 1 ··· 6 7 8 9 10 11 12 13 다음 반응형