码迷,mamicode.com
首页 > 编程语言 > 详细

C++ UFunction({FLAG}) 宏 FLAG 解释笔记

时间:2015-11-27 14:37:20      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:

1、BluePrintCallable  --蓝图可调用 但不可编辑
2、BlueprintImplementableEvent --函数体必须实现与Blueprint 但函数名必须生成与C++ .h
3、BlueprintNativeEvent -- BlueprintNativeEvent functions are like a combination of BlueprintCallable and BlueprintImplementableEventfunctions. They have default behaviors programmed in C++, but these can be supplemented or replaced by overriding in the Blueprint Graph. When programming these, the C++ code always goes in a virtual function with "_Implementation" added to the end of the name, as shown below. This is the most flexible option, so we will use it for this tutorial.
 
https://docs.unrealengine.com/latest/CHN/Programming/UnrealArchitecture/Reference/Functions/Specifiers/index.html
 
 
 
相关文献--文档:
 
https://docs.unrealengine.com/latest/CHN/Programming/Tutorials/VariablesTimersEvents/2/index.html

C++ UFunction({FLAG}) 宏 FLAG 解释笔记

标签:

原文地址:http://www.cnblogs.com/linqing/p/5000414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!