분류 전체보기 168

FHitResult 구조체 / FCollisionQueryParams 구조체 / LineTraceSingleByChannel

FHitResult 충돌지점 및 해당 point의 표면 normal 과 같은 trace 의 한 번의 정보를 포함하는 구조체  FCollisionQueryParams AddIgnoreActor 로 특정 액터를 Trace 대상에서 제외시킬 수 있다.주로 자기 자신, 총의 주인 등을 제외시킬 때 사용된다. FHitResult hitInfo;FCollisionQueryParams param;param.AddIgnoredActor(this);bool bZombie = GetWorld()->LineTraceSingleByChannel(hitInfo, startPos, endPos, ECC_Visibility, param); LineTraceSingleByChannel변수1 : 충돌 결과를 받는 변수변수2 : 직선의..

창문 머티리얼 제작

https://docs.unrealengine.com/4.27/ko/RenderingAndGraphics/Materials/MaterialProperties/ 머티리얼 프로퍼티 UE4 머티리얼과 그 작동방식에 대한 입문서입니다. docs.unrealengine.com 1. 머티리얼 머티리얼 도메인 -> Surface 블렌드 모드 -> Translucent 셰이딩 모델 -> Default Lit 데칼 반응(D 버퍼) -> Color Normal Roughness 2. Translucency 라이팅모드 -> Surface TranslucencyVolume 3. 리프랙션 리프랙션 메서드 -> Index Of Refraction

FVector::DotProduct 과 FVector::Dot 의 차이

Unreal Engine의 FVector 클래스에서 DotProduct과 Dot은 기본적으로 동일한 기능을 수행하지만, 몇 가지 차이가 있다. 1. 호출법 DotProduct : FVector 클래스의 정적 함수이며, 두 개의 FVector 객체를 인수로 취한다. Dot : FVector 객체의 멤버 함수이며, 다른 FVector 객체와의 내적을 계산한다. 2. 사용성 DotProduct은 외부에서 사용되는 함수이므로 FVector::를 사용하여 직접 호출된다. Dot은 FVector 객체의 메서드로서 특정 FVector 객체에 대해 호출된다. 예시 FVector Vec1(1.0f, 2.0f, 3.0f); FVector Vec2(4.0f, 5.0f, 6.0f); float DotProductResult ..

C++ 문법 2024.02.28

string 의 substr 함수

https://modoocode.com/235 C++ 레퍼런스 - string 의 substr 함수 모두의 코드 C++ 레퍼런스 - string 의 substr 함수 작성일 : 2020-07-17 이 글은 160393 번 읽혔습니다. 문자열의 일부를 리턴한다. 문자열의 pos 번째 문자 부터 count 길이 만큼의 문자열을 리턴한다. 만약 modoocode.com 예시 코드 #include #include int main() { std::string a = "0123456789abcdefghij"; // count 가 npos 이므로 pos 부터 문자열 끝까지 리턴한다. std::string sub1 = a.substr(10); std::cout

C++ 문법 2024.01.04

C++ BigInteger 구현

https://blog.naver.com/tybnasgo/223006793286 BigInt 프로젝트 후기 - 프로젝트 배경 제가 하는 알고리즘 스터디에서 누군가 매우 큰 정수의 사칙연산에 관해 질문을 했었습니... blog.naver.com #include #include #include using namespace std; //큰 수 클래스 class bigInt { private: string number;//숫자 public: bigInt(string n = "");//생성자 inline int max(int a, int b);//min void Show() const;//결과 bool operator(const bigInt& num);//> bigInt operator+(const bigInt&..

C++ 문법 2024.01.04