You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
622 B
C++
25 lines
622 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Framework/Commands/Commands.h"
|
|
#include "EditorStyleSet.h"
|
|
|
|
/** Anim Graph Commands */
|
|
class ANIMGRAPH_API FAnimGraphCommands : public TCommands<FAnimGraphCommands>
|
|
{
|
|
public:
|
|
FAnimGraphCommands()
|
|
: TCommands<FAnimGraphCommands>(TEXT("AnimGraph"), NSLOCTEXT("Contexts", "AnimGraphCommands", "Anim Graph Commands"), NAME_None, FEditorStyle::GetStyleSetName())
|
|
{
|
|
}
|
|
|
|
virtual void RegisterCommands() override;
|
|
|
|
public:
|
|
|
|
// Toggle pose watching for a given node
|
|
TSharedPtr<FUICommandInfo> TogglePoseWatch;
|
|
};
|