You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 6306736ac85b7fef22be7751 [CL 21558583 by bryan sefcik in ue5-main branch]
29 lines
663 B
C++
29 lines
663 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "EdGraph/EdGraph.h"
|
|
#include "UObject/ObjectPtr.h"
|
|
#include "UObject/UObjectGlobals.h"
|
|
|
|
#include "BlendSpaceGraph.generated.h"
|
|
|
|
class UBlendSpace;
|
|
class UObject;
|
|
|
|
// Dummy graph to hold sub-graphs for blendspaces. Not edited directly.
|
|
UCLASS(MinimalAPI)
|
|
class UBlendSpaceGraph : public UEdGraph
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
private:
|
|
// UObject interface
|
|
virtual void PostLoad() override;
|
|
|
|
public:
|
|
// Blendspace that we wrap
|
|
UPROPERTY(VisibleAnywhere, Category="BlendSpace", Instanced, NoClear, meta = (ShowOnlyInnerProperties))
|
|
TObjectPtr<UBlendSpace> BlendSpace;
|
|
}; |