Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 티스토리챌린지
- 줄 세우기
- RootMotion
- 프로그래머스
- Unreal Engine5
- DirectX11
- RVO
- UE5
- DeferredRendering
- 1563
- 오블완
- Programmers
- 2294
- 백준
- UnrealEngine4
- C
- GeeksForGeeks
- Frustum
- 언리얼엔진5
- 팰린드롬 만들기
- C++
- directx
- NRVO
- IFileDialog
- const
- algorithm
- UnrealEngine5
- winapi
- softeer
- baekjoon
Archives
- Today
- Total
Game Develop
[UE5] FString to const TChar* 하기 본문
그냥 FString을 역참조해주면 된다.
FString은 내부적으로 TArray<TCHAR> 타입을 멤버변수로 가진 상태에서 관리하기 때문이다.
F12로 정의찍다보면 역참조연산자(*)가 const TChar* 리턴된다고 코드가 작성되어있다.
메쉬나 애님인스턴스 로드할 때 경로를 매개변수로 넘겨줘서 로드하게 하려다보니까 알게 됐다.
보통 아래같이 문자열리터럴을 TEXT 매크로를 통해 const TChar*로 변환시켜서 넘긴다.
1
2
3
4
5
6
7
8
9
|
static ConstructorHelpers::FObjectFinder<USkeletalMesh>
tempMesh(TEXT("에셋경로"));
if (tempMesh.Succeeded())
{
GetMesh()->SetSkeletalMesh(tempMesh.Object);
GetMesh()->SetRelativeLocationAndRotation(FVector(0, 0, -90), FRotator(0, -90, 0));
}
|
cs |
경로를 매개변수로든 뭐든 따로 입력받아서 하고싶으면 그냥 아래처럼 하면 된다.
1
2
3
4
5
6
7
8
9
10
11
|
void ACharacterBase::LoadMesh(FString assetPath)
{
static ConstructorHelpers::FObjectFinder<USkeletalMesh>
tempMesh(*assetPath);
if (tempMesh.Succeeded())
{
GetMesh()->SetSkeletalMesh(tempMesh.Object);
GetMesh()->SetRelativeLocationAndRotation(FVector(0, 0, -90), FRotator(0, -90, 0));
}
}
|
cs |
'UnrealEngine5 > 이것저것' 카테고리의 다른 글
[UE5] C++로 AI Perception 사용할 때 주의할점. (0) | 2023.02.28 |
---|---|
[UE5] CSV파일 로드 후 조작하기 (string to enum class) (0) | 2023.02.21 |
[UE5] 패널이 안보일 경우 대처법. (0) | 2023.02.03 |
[UE5] 블루프린트에서 C++로 뺄수 있는 부분은 최대한 뺀다. (1) | 2023.01.29 |
[UE5] 언리얼에서의 객체선언 (with GC) (1) | 2023.01.28 |