Files
UnrealEngineUWP/Engine/Source/Editor/EnvironmentQueryEditor/Classes/EnvironmentQueryGraphNode_Test.h
Jaroslaw Palczynski f23f29257b Back out changelist 2481333
Rob asked me to back out GENERATED_*_BODY -> GENERATED_BODY change for now until the "_Validate and _Implementation auto-generation" discussion is over.

#codereview Robert.Manuszewski

[CL 2481343 by Jaroslaw Palczynski in Main branch]
2015-03-17 05:38:32 -04:00

29 lines
679 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "EnvironmentQueryGraphNode_Test.generated.h"
UCLASS()
class UEnvironmentQueryGraphNode_Test : public UEnvironmentQueryGraphNode
{
GENERATED_UCLASS_BODY()
/** weight percent for display */
UPROPERTY()
float TestWeightPct;
/** weight is passed as named param */
UPROPERTY()
uint32 bHasNamedWeight : 1;
/** toggles test */
UPROPERTY()
uint32 bTestEnabled : 1;
virtual void InitializeInstance() override;
virtual FText GetNodeTitle(ENodeTitleType::Type TitleType) const override;
virtual FText GetDescription() const override;
void SetDisplayedWeight(float Pct, bool bNamed);
};