mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-29 04:23:36 +00:00
15 lines
449 B
C++
15 lines
449 B
C++
#include "AthenaDanceItemDefinition.h"
|
|
|
|
FText UAthenaDanceItemDefinition::GetChatTriggerCommandName() const {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
UAthenaDanceItemDefinition::UAthenaDanceItemDefinition() {
|
|
this->bMovingEmote = false;
|
|
this->bMoveForwardOnly = false;
|
|
this->WalkForwardSpeed = 300.00f;
|
|
ItemType = EFortItemType::AthenaDance;
|
|
GameplayTags.AddTag(FGameplayTag::RequestGameplayTag(FName("Cosmetics.EmoteType.Dance")));
|
|
}
|
|
|