C++의 Component 클래스를 블루프린트에서 상속받으려 했지만 되지 않았다.
UCLASS(ClassGroup=(Custom), meta=(BlueprintSpawnableComponent))
class TEST_API UMyActorComponent : public UActorComponent
UCLASS(ClassGroup=(Custom), meta=(BlueprintSpawnableComponent), Blueprintable)
class TEST_API UMyActorComponent : public UActorComponent
Blueprintable 키워드를 추가하면 가능해진다.
'둥지 > Unreal' 카테고리의 다른 글
[콕콕] Unreal 에디터 유틸리티 (0) | 2024.02.28 |
---|---|
[콕콕] Unreal5 뷰모델 (0) | 2024.01.14 |
[콕콕] Unreal 모프타겟 (0) | 2023.08.21 |
Unreal GAS(GameplayAbilitySystem) Documentation 번역글 5부(完) (0) | 2023.07.28 |
언리얼 LNK 2001 Error (0) | 2023.07.07 |