博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UE4 Class Naming Prefixes
阅读量:6153 次
发布时间:2019-06-21

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

Unreal Engine provides tools that generate code for you during the build process. These tools have some class naming expectations and will trigger warnings or errors if the names do not match the expectations. The list of class prefixes below delineates what the tools are expecting.

  • Classes derived from Actor prefixed with A, e.g. AController.

  • Classes derived from Object are prefixed with U, e.g. UComponent.

  • Enums are prefixed with E, e.g. EFortificationType.

  • Interface classes are usually prefixed with I, e.g. IAbilitySystemInterface.

  • Template classes are prefixed by T, e.g. TArray.

  • Classes that derive from SWidget (Slate UI) are prefixed by S, e.g. SButton.

  • Everything else is prefixed by the , e.g. FVector.

转载地址:http://ccbfa.baihongyu.com/

你可能感兴趣的文章
Oracle的控制文件和日志文件
查看>>
ID基本操作(在框架内处理文本)5.28
查看>>
入门HTML 简单的结构
查看>>
Data_Structure01-绪论作业
查看>>
浏览器兼容
查看>>
【cl】工程导入
查看>>
C++学习:lambda表达式入门
查看>>
java.lang.NoClassDefFoundError: org/json/JSONException
查看>>
团队作业第五次—项目系统设计与数据库设计
查看>>
HIVE udf实例
查看>>
zookeeper中的QuorumPeerMain解析
查看>>
Bzoj1974 [Sdoi2010]auction 代码拍卖会
查看>>
Celery 分布式任务队列快速入门
查看>>
【Leetcode】Count and Say
查看>>
jQuery jsonp跨域请求详解
查看>>
取得Web程序和非Web程序的根目录的N种取法(C#)
查看>>
经典计算机算法设计方法(1) -- 递归与迭代转化
查看>>
AutoReleasePool 和 ARC 以及Garbage Collection
查看>>
蛇形填数
查看>>
海量数据处理
查看>>