728x90
반응형
인사말
안녕하세요. 이번 포스트에서는 앞에서 만든 캐릭터들의 애니메이션 블루프린트를 적용해보도록 하겠습니다.
AuraCharacterBase
- TObjectPtr<USkeletalMeshComponent> Weapon 을 생성한다.
Weapon = CreateDefaultSubobject<USkeletalMeshComponent>("Weapon");
Weapon->SetupAttachment(GetMesh(),FName("WeaponHandSocket"));
Weapon->SetCollisionEnabled(ECollisionEnabled::NoCollision);
Aura
- Character Movement Component 에서 Velocity 를 받아와서 Ground Speed 를 구해서 블렌드 스페이스에 값을 넣어준다.
- Enemy 의 애니메이션 블루프린트는 템플릿으로 작성되서 공용으로 사용할 수 있도록 한다.
Gobline Spear
- ABP_Enemy 를 사용한다.
Gobline Slingshot
- ABP_Enemy 를 사용한다.
728x90
반응형
'언리얼 엔진 > Gameplay Ability System - Udemy' 카테고리의 다른 글
Gameplay Ability System(GAS) - Post Process Volume Highlight (0) | 2024.02.05 |
---|---|
Gameplay Ability System(GAS) - 캐릭터 움직임 및 하이라이트 (0) | 2024.02.05 |
Gameplay Ability System(GAS) - 기본 캐릭터 클래스 (0) | 2024.02.01 |
Gameplay Ability System(GAS) - 프로젝트 세팅 (0) | 2024.01.31 |
Gameplay Ability System(GAS) 강의 듣기 시작 (0) | 2024.01.29 |