일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 언리얼엔진5
- UnrealEngine5
- 오블완
- directx
- C++
- C
- 백준
- winapi
- 티스토리챌린지
- 줄 세우기
- DirectX11
- baekjoon
- TObjectPtr
- RVO
- 프로그래머스
- softeer
- 2294
- Unreal Engine5
- UnrealEngine4
- IFileDialog
- UE5
- const
- GeeksForGeeks
- RootMotion
- NRVO
- Programmers
- 팰린드롬 만들기
- algorithm
- Frustum
- 1563
- Today
- Total
목록2025/09 (5)
Game Develop
https://www.acmicpc.net/problem/1461 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697#include iostream>#include string>#include map>#include vector>#include algorithm>#include math.h>#include queue>#include functional>#include sstream>#include memory.h>#include..
https://www.acmicpc.net/problem/17951 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384#include iostream>#include string>#include map>#include vector>#include algorithm>#include math.h>#include queue>#include functional>#include sstream>#include memory.h>#include deque>#include set>#incl..
https://www.acmicpc.net/problem/3079123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384#include iostream>#include string>#include map>#include vector>#include algorithm>#include math.h>#include queue>#include functional>#include sstream>#include memory.h>#include deque>#include set>#includ..
https://www.acmicpc.net/problem/16434 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115#include iostream>#include string>#include map>#include vector>#include algorithm>#include math.h>#include queue>#include f..
포스트프로세싱용 머터리얼을 만들었는데, 파라미터값을 넘겨야하는 경우가 있다.이 때, 포스트프로세싱용 머터리얼을 포스트프로세스볼륨에 Add할 때 Weight값을 설정할 수 있는데, 이 값에 따라 실제로 넘겨지는 파라미터값이 바뀐다. 예를들어 어떤 이벤트가 발생해서 1.0f값을 머터리얼인스턴스에 넘겼는데 이 값을 온전히 넘기려면 Weight값이 1.0f여야 한다.만약 Weight값이 0.1f이다? 그러면 1.0f값이 아니라 0.1f 값이 넘어간다... Weight값이 0.1f이라 파라미터값도 1/10값만 넘어간 거다. 그러니 주의하도록 하고, 값이 제대로 넘어갔는지 확인하려면 DebugScalarValues 노드를 사용할 경우 뷰포트에 실제 넘겨진값이 몇인지 바로 확인할 수 있다. IsHit이라는 파라미터..