1. 헤더 파일 글로벌 영역에 static 변수 등록
#pragma once
#include "xxxx.h"
#include "xxx.h"
#include "xxxxx.generated.h"
static int nVar = 0;
UCLASS()
class XXXX
2. 소스 파일에 아래 구문 추가
#if !(UE_BUILD_SHIPPING || UE_BUILD_TEST)
FAutoConsoleVariableRef CVarXXX(
TEXT("x.nVar"),
nVar,
TEXT("Description about the console variable.\n"),
ECVF_Cheat
);
#endif
3. 에디터에서 콘솔 변수 확인 및 정의
x.nVar -> 변수값 확인
x.nVar 1 -> nVar의 값 1로 변경
공감하며 읽었습니다. 좋은 글 감사드립니다.