You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
24 lines
885 B
C
24 lines
885 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include "HAL/Platform.h"
|
|||
|
|
|
|||
|
|
class UStateTreeEditorData;
|
|||
|
|
struct FStateTreeStateLink;
|
|||
|
|
struct FStateTreeTransition;
|
|||
|
|
enum EStateTreeNodeFormatting : uint8;
|
|||
|
|
struct FSlateBrush;
|
|||
|
|
struct FSlateColor;
|
|||
|
|
class FText;
|
|||
|
|
|
|||
|
|
namespace UE::StateTree::Editor
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
FText GetStateLinkDesc(const UStateTreeEditorData* EditorData, const FStateTreeStateLink& Link, EStateTreeNodeFormatting Formatting, bool bShowStatePath = false);
|
|||
|
|
const FSlateBrush* GetStateLinkIcon(const UStateTreeEditorData* EditorData, const FStateTreeStateLink& Link);
|
|||
|
|
FSlateColor GetStateLinkColor(const UStateTreeEditorData* EditorData, const FStateTreeStateLink& Link);
|
|||
|
|
|
|||
|
|
FText GetTransitionDesc(const UStateTreeEditorData* EditorData, const FStateTreeTransition& Transition, EStateTreeNodeFormatting Formatting, bool bShowStatePath = false);
|
|||
|
|
|
|||
|
|
} // UE::StateTree::Editor
|