mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
22 lines
677 B
C++
22 lines
677 B
C++
#include "AthenaSprayItemDefinition.h"
|
|
|
|
bool UAthenaSprayItemDefinition::ShouldUseBannerAsTexture() const {
|
|
return false;
|
|
}
|
|
|
|
TSoftObjectPtr<UTexture2D> UAthenaSprayItemDefinition::GetDecalTexture() const {
|
|
return NULL;
|
|
}
|
|
|
|
TSoftObjectPtr<UMaterialInterface> UAthenaSprayItemDefinition::GetDecalMaterial() const {
|
|
return NULL;
|
|
}
|
|
|
|
UAthenaSprayItemDefinition::UAthenaSprayItemDefinition() {
|
|
this->bUseBannerAsTexture = false;
|
|
ItemType = EFortItemType::AthenaDance;
|
|
GameplayTags.AddTag(FGameplayTag::RequestGameplayTag(FName("Cosmetics.EmoteType.Spray")));
|
|
GameplayTags.RemoveTag(FGameplayTag::RequestGameplayTag(FName("Cosmetics.EmoteType.Dance")));
|
|
}
|
|
|