7#include "ArticyObjectWith_Base.h"
8#include "ArticyObjectWithZIndex.generated.h"
10UINTERFACE(MinimalAPI, BlueprintType, meta=(CannotImplementInterfaceInBlueprint))
22 UFUNCTION(BlueprintCallable, Category=
"ArticyObjectWithZIndex")
23 virtual float& GetZIndex()
25 static const auto& PropName = FName(
"ZIndex");
26 return GetProperty<float>(PropName);
29 virtual const float& GetZIndex()
const
36 UFUNCTION(BlueprintCallable, Category=
"ArticyObjectWithZIndex")
37 virtual float& SetZIndex(UPARAM(ref)
const float& ZIndex)
39 return GetZIndex() = ZIndex;
Definition ArticyObjectWithZIndex.h:17
Definition ArticyObjectWith_Base.h:27
Definition ArticyObjectWithZIndex.h:11
Definition ArticyObjectWith_Base.h:12