You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Moved event queue to it's own struct - Changed the SendEvent() API to accept struct view to prevent instanced struct copy in common cases - Fixed event handling in case EnterState() fails. - Added option for Tasks to disavble ticking, or to be ticked only when there are events - Added option for Tasks handle when properties are copied - Changed DebugText to use external Actor reference - Changed DelayTask to use the new GetInstanceData which does not need type - Added TStateTreeInstanceDataStructRef which can be used to access struct instance data in delegates #rb Maxime.Mercier Luciano.Ferraro #preflight 6360dd302b5338aceb2d0343 [CL 22888708 by mikko mononen in ue5-main branch]
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "StateTreeTaskBase.h"
|
|
#include "StateTreeDelayTask.generated.h"
|
|
|
|
USTRUCT()
|
|
struct STATETREEMODULE_API FStateTreeDelayTaskInstanceData
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
/** Delay before the task ends. */
|
|
UPROPERTY(EditAnywhere, Category = Parameter, meta = (EditCondition = "!bRunForever", ClampMin="0.0"))
|
|
float Duration = 1.f;
|
|
|
|
/** Adds random range to the Duration. */
|
|
UPROPERTY(EditAnywhere, Category = Parameter, meta = (EditCondition = "!bRunForever", ClampMin="0.0"))
|
|
float RandomDeviation = 0.f;
|
|
|
|
/** If true the task will run forever until a transition stops it. */
|
|
UPROPERTY(EditAnywhere, Category = Parameter)
|
|
bool bRunForever = false;
|
|
|
|
/** Internal countdown in seconds. */
|
|
float RemainingTime = 0.f;
|
|
};
|
|
|
|
/**
|
|
* Simple task to wait indefinitely or for a given time (in seconds) before succeeding.
|
|
*/
|
|
USTRUCT(meta = (DisplayName = "Delay Task"))
|
|
struct STATETREEMODULE_API FStateTreeDelayTask : public FStateTreeTaskCommonBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
using FInstanceDataType = FStateTreeDelayTaskInstanceData;
|
|
|
|
FStateTreeDelayTask() = default;
|
|
|
|
virtual const UStruct* GetInstanceDataType() const override { return FInstanceDataType::StaticStruct(); }
|
|
|
|
virtual EStateTreeRunStatus EnterState(FStateTreeExecutionContext& Context, const FStateTreeTransitionResult& Transition) const override;
|
|
virtual EStateTreeRunStatus Tick(FStateTreeExecutionContext& Context, const float DeltaTime) const override;
|
|
};
|