전체 글51 [백준 11726] 2×n 타일링 문제링크 #include using namespace std; int dp[1001] = { 1, 1 }; int main() { int n = 0; cin >> n; if (n 2023. 5. 26. Unreal5 모션 워핑 다뤄보기 언리얼의 모션 워핑(Motion Warping)은 캐릭터의 루트 모션이 타겟과 일치하도록 동적으로 정렬하는 기능이다. 다시 말하자면, 루트모션이 재생 중인 캐릭터를 특정 위치로 이동할 수 있다.이를테면 파쿠르 액션이나 암살 등 다양한 곳에 모션 워핑을 사용할 수 있다. 모션 워핑언리얼 엔진의 애니메이션 모션 워핑에 대해 자세히 알아봅니다.docs.unrealengine.com 언리얼 엔진에서 모션 워핑을 쓰기 위해선 모션 워핑 플러그인을 켜야 한다.아래 사진과 같이 모션 워핑은 아직 실험 단계의 기능인 것을 볼 수 있다. (5.1 기준) 모션 워핑 플러그인을 켰다면 빌드 파일에 모듈 추가 후 프로젝트를 재구축한다.using UnrealBuildTool;public class YourProjectName.. 2023. 5. 13. [프로그래머스] 폰켓몬 문제링크 #include #include using namespace std; int solution(vector nums) { int answer = 0; set pSet = {}; for (int num : nums) { pSet.insert(num); } answer = min(pSet.size(), nums.size() / 2); return answer; } 2023. 5. 8. Unreal GAS(GameplayAbilitySystem) Documentation 번역글 1부 해당 글은 언리얼 공식 문서가 아닌 개인이 작성해놓은 문서를 DeepL과 필자가 멋대로 번역, 의역한 글입니다. 따라서 잘못된 정보와 해석이 다분히 있을 수 있습니다. GitHub - tranek/GASDocumentation: My understanding of Unreal Engine 5's GameplayAbilitySystem plugin with a simple multiplayer sMy understanding of Unreal Engine 5's GameplayAbilitySystem plugin with a simple multiplayer sample project. - GitHub - tranek/GASDocumentation: My understanding of Unreal Engi.. 2023. 5. 5. [프로그래머스] 프로세스 문제링크 #include #include #include using namespace std; int solution(vector priorities, int location) { int answer = 0; //max_element() 늘 기억하자 int max = *max_element(priorities.begin(), priorities.end()); while (true) { for (int i = 0; i < priorities.size(); ++i) { if (priorities[i] == max) { ++answer; if (i == location) { return answer; } priorities[i] = 0; max = *max_element(priorities.begin(), p.. 2023. 5. 4. [프로그래머스] 연속 부분 수열 합의 개수 문제링크 #include #include #include using namespace std; int solution(vector elements) { set set = {}; size_t size = elements.size(); for (size_t i = 1; i 2023. 5. 2. C/C++ 더블 포인터 사용 까닭 가끔 C/C++ 프로그래밍을 하다 보면 더블 포인터 인자를 가진 API 함수를 보곤 한다.굳이 더블 포인터를 사용하는 까닭이 뭘까? #include void Swap(int* _A, int* _B){ int C = 0; //스왑 C = *_A; *_A = *_B; *_B = C;}int main(){ int* APtr = new int(3); int* BPtr = new int(5); std::cout 위 코드는 포인터 변수가 가진 값을 스왑해주는 코드이다. 포인터가 가진 변수의 값을 바꾸기 위한 목적이라면 위 코드로도 충분하지만만약 포인터 자체의 값, 즉 주소값을 바꾸고 싶다면 어떻게 해야 할까? #include void Swap(int** _A, int** _B){ int* C = nullptr;.. 2023. 5. 1. 캐싱 캐싱은 데이터를 나중에 쉽게 재사용할 수 있도록 미리 연산해두는 것을 말한다. 컴퓨터의 프로세스들은 최근에 자주 사용하거나 자주 사용된 메모리를 캐싱하여 상대적으로 느린 메인 메모리의 접근 횟수를 줄여 성능을 향상시킨다. 대부분의 메모리 위치들은 짧은 시간동안 한 번 이상 접근되기 때문에 하드웨어 수준에서 캐싱할 경우 연산 성능 향상에 크게 도움이 된다. 캐싱은 소프트웨어에 있어서도 비슷한 접근을 한다. 만약 어떤 작업 또는 연산이 특별히 느리다면, 연산을 필요한 것보다 많이 수행하는 것은 낭비일 것이다. 때문에 한 번 작업한 결과는 메모리에 저장해두고 나중에 필요할 때 재사용할 수 있어야 한다. 일반적으로 느린 작업들 디스크 접근 같은 파일을 두 번 이상 열고 읽는 것은 피해야 한다. (아마 파일 시스.. 2023. 4. 3. Unreal MSB3073 에러 시도해볼 것들1. 언리얼 프로젝트 폴더 삭제하고 재생성. 2. 백그라운드에서 실행 중인 라이브 코딩 삭제라이브 코딩이 문제인 경우 출력창에 아래 에러가 뜬다.1>Unable to build while Live Coding is active. Exit the editor and game, or press Ctrl+Alt+F11 if iterating on code in the editor or game 3. .uproject 파일 내부 확인 2023. 4. 1. 이전 1 2 3 4 5 6 다음