F4.UPARAM
大约 1 分钟
UFUNCTION(BlueprintCallable, BlueprintCosmetic, Category = "Global UI Extensions")
static UCommonActivatableWidget* PushContentToLayer_ForPlayer(const ULocalPlayer* LocalPlayer, UPARAM(meta = (Categories = "UI.Layer")) FGameplayTag LayerName, UPARAM(meta = (AllowAbstract = false)) TSubclassOf<UCommonActivatableWidget> WidgetClass);
UPARAM
UFUNCTION(BlueprintCallable)
void TestFun(
UPARAM(DisplayName = "Test (floatname)") float Test,
UFUNCTION(BlueprintCallable)
void FillDogInfo(FDogInfo& OutResult);
UFUNCTION(BlueprintCallable)
void UseAndFillDogInfo(
UPARAM(ref) FDogInfo& SearchParams);
UFUNCTION(BlueprintCallable)
void UseDogInfo(const FDogInfo& SearchParams);

如果没有现在分组,Gametag会显示所有标签。

加上UPARAM则可以直接限制到分类。

UFUNCTION(BlueprintCallable, BlueprintCosmetic, Category = "Global UI Extensions")
static UCommonActivatableWidget* PushContentToLayer_ForPlayer(const ULocalPlayer* LocalPlayer, UPARAM(meta = (Categories = "UI.Layer")) FGameplayTag LayerName, UPARAM(meta = (AllowAbstract = false)) TSubclassOf<UCommonActivatableWidget> WidgetClass);
UFUNCTION(BlueprintCallable, Category = "Composure", meta = (DeterminesOutputType = "OutputType"))
UCompositingElementOutput* FindOutputPass(UPARAM(meta = (AllowAbstract = "false"))TSubclassOf<UCompositingElementOutput> OutputType);