【unity实用技能】记一次失败的蓝图接口开发失败经验
2021-07-03 17:04
标签:term 蓝图 meta 拓展 func include 批量 bat append 首先还是找到这个接口得代码 可以看到关键的点就是 CommutativeAssociativeBinaryOperator = "true" 这里有几个要注意的地方: 所以,失败了。。。 【unity实用技能】记一次失败的蓝图接口开发失败经验 标签:term 蓝图 meta 拓展 func include 批量 bat append 原文地址:http://blog.51cto.com/13638120/2173424
就是这个,标记这个接口是可以加pin的。
接下来就是照着写一下接口// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Kismet/BlueprintFunctionLibrary.h"
#include "Styling/SlateTypes.h"
#include "Components/Widget.h"
#include "ExtraBlueprintFunctionHelper.generated.h"
/**
*
*/
UCLASS()
class CLIENT_API UExtraBlueprintFunctionHelper : public UBlueprintFunctionLibrary
{
GENERATED_BODY()
public:
UFUNCTION(BlueprintCallable, meta = (DisplayName = "SetBatchVisiable", CommutativeAssociativeBinaryOperator = "true"), Category = "UExtraBlueprintFunctionHelper")
static UWidget* SetBatchVisiable(UWidget* objA, UWidget* objB);
};
1.用了CommutativeAssociativeBinaryOperator这个标记为可拓展的话,返回值类型和传的参数类型要一致
2.如果要带流程线的话,就不能用BlueprintPure,要用BlueprintCallable
3.如果用了BlueprintCallable,那么又不能加pin了。。。
就是要不是这样
要不是这样
下一篇:进程和线程相关
文章标题:【unity实用技能】记一次失败的蓝图接口开发失败经验
文章链接:http://soscw.com/index.php/essay/101351.html