You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-139412 #rb thomas.sarkanen #preflight 627d322462656a7b7e31a679 [CL 20179330 by lucas dower in ue5-main branch]
22 lines
547 B
C++
22 lines
547 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "ControlRigGizmoLibraryActions.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "AssetTypeActions"
|
|
|
|
void FControlRigShapeLibraryActions::GetActions( const TArray<UObject*>& InObjects, FMenuBuilder& MenuBuilder )
|
|
{
|
|
//FAssetTypeActions_AnimationAsset::GetActions(InObjects, MenuBuilder);
|
|
}
|
|
|
|
const TArray<FText>& FControlRigShapeLibraryActions::GetSubMenus() const
|
|
{
|
|
static const TArray<FText> SubMenus
|
|
{
|
|
LOCTEXT("AnimControlRigSubMenu", "Control Rig")
|
|
};
|
|
return SubMenus;
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|