博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【unity实用技能】记一次失败的蓝图接口开发失败经验
阅读量:5926 次
发布时间:2019-06-19

本文共 1050 字,大约阅读时间需要 3 分钟。

本来想写一个批量控制widget开关的接口,想写一个像append一样的可加pin的接口

【unity实用技能】记一次失败的蓝图接口开发失败经验

首先还是找到这个接口得代码

【unity实用技能】记一次失败的蓝图接口开发失败经验

可以看到关键的点就是 CommutativeAssociativeBinaryOperator = "true"

就是这个,标记这个接口是可以加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实用技能】记一次失败的蓝图接口开发失败经验
要不是这样

【unity实用技能】记一次失败的蓝图接口开发失败经验

所以,失败了。。。

转载于:https://blog.51cto.com/13638120/2173424

你可能感兴趣的文章
使用mysql-proxy 快速实现mysql 集群 读写分离
查看>>
电脑内部录音教程Virtual Audio Cable使用教程
查看>>
About the windchill Command -
查看>>
自动上传下载
查看>>
jetty&tomcat对待表单过长问题
查看>>
NO.106 需求的状态、研发阶段及注意事项。
查看>>
docker Failed to get D-Bus connection 报错
查看>>
CentOS 5 CentOS 6 启动流程及关键步骤
查看>>
Ecshop:后台添加新功能栏目以及管理权限设置
查看>>
《Hadoop大明白》【1】Hadoop的核心组件
查看>>
svn 自动同步到web站点目录post-commit.bat
查看>>
加速你的Hibernate引擎(上)
查看>>
Zabbix Maintenance 维护周期
查看>>
开通博客,记录生活
查看>>
浅谈云计算核心技术
查看>>
c++ memcpy与strcpy的比较
查看>>
Eclipse Add generated serial version ID报错解决方案
查看>>
mongoDB的副本机制
查看>>
nginx作为tcp代理 虚拟主机配置 模板
查看>>
修改GIT的user.name和user.email
查看>>