Committing changes that aren't mine but Git is saying they're mine (Events for footsteps). Shouldn't mess anything up.
25 lines
766 B
C++
25 lines
766 B
C++
// Copyright (c), Firelight Technologies Pty, Ltd. 2012-2025.
|
|
|
|
#include "FMODAsset.h"
|
|
#include "FMODStudioModule.h"
|
|
|
|
static const TCHAR *FMODAssetTypeStrings[] = { TEXT("Bank"), TEXT("Event"), TEXT("VCA"), TEXT("Bus"), TEXT("Invalid") };
|
|
|
|
UFMODAsset::UFMODAsset(const FObjectInitializer &ObjectInitializer)
|
|
: Super(ObjectInitializer)
|
|
{
|
|
}
|
|
|
|
bool UFMODAsset::IsAsset() const
|
|
{
|
|
return this != GetClass()->GetDefaultObject();
|
|
}
|
|
|
|
/** Get tags to show in content view */
|
|
void UFMODAsset::GetAssetRegistryTags(TArray<FAssetRegistryTag> &OutTags) const
|
|
{
|
|
Super::GetAssetRegistryTags(OutTags);
|
|
OutTags.Add(
|
|
UObject::FAssetRegistryTag("Guid", AssetGuid.ToString(EGuidFormats::DigitsWithHyphensInBraces), UObject::FAssetRegistryTag::TT_Alphabetical));
|
|
}
|