Files
mikko mononen f9887f77bc StateTree: Added schema picker to new tree creation workflow
- Added BP-like class picker for schema when StateTree asset is created
- Added "CommonSchema" meta tag for schemas to allow them to be added to the common list
- Allow the asset on StateTree actor component to EditAnywhere
- Fixed compilation indication for empty StateTrees (was showing red)

#robomerge EngineMerge
#jira UE-151649
#rb Yoan.StAmant
#preflight 62beaeeb8d5e6787590a0921

[CL 20911820 by mikko mononen in ue5-main branch]
2022-07-01 04:36:16 -04:00

16 lines
331 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "StateTreeSchema.h"
#include "StateTreeTest.generated.h"
UCLASS(HideDropdown)
class UStateTreeTestSchema : public UStateTreeSchema
{
GENERATED_BODY()
virtual bool IsStructAllowed(const UScriptStruct* InScriptStruct) const override { return true; }
};