美文网首页
UE4 Blueprint 类型详解

UE4 Blueprint 类型详解

作者: chenleifun | 来源:发表于2019-11-18 17:43 被阅读0次

Blueprint 类型详解

  • Actor: An actor is an object that can be placed or spawned in the world. (能够被放到世界)

  • Pawn: A pawn is an actor that can be possessed and receive input from a controller.(能被控制的Actor

  • Character: A character is a type of Pawn that includes the ability to walk around.(能够走动的Pawn

  • PlayerController: A Player controller is an actor responsible for controlling a Pawn used by the player.(用来控制Pawn

  • AIController

  • GameModeBase: Game mode base defines the game being played, its rules, scoring, and other facets of the game type.(定义游戏,得分,以及其他方面

  • ActorComponent: An actor component is a reusable component that can be added to any actor.(能够添加到Actor的可重用构件

  • SceneComponent: A scene component is a component that has a scene transform and can be attached to other scene components. (可以附加到其他场景组件

  • Game Instance:

Representing Players, Friends, and Foes in the world

  • Pawn: not assumed to be humanoid.

  • Character: humanoid-style Pawn.

Display Information to Players

  • HUD: A HUD is a heads-up display, or the 2D on-screen display that is comon in many games. Think health, ammo, gun reticle, etc. Each PlayerController typically has one of these.

  • Camera: The PlayerCameraManager is the eyeball for a player and manages how it hebaviors. Each PlayerController typically has one of these as well.

Setting and Tracking the Rules of the Game

  • GameMode

  • GameState

  • PlayerState

https://docs.unrealengine.com/Images/Gameplay/Framework/QuickReference/GameFramework.jpg

相关文章

  • UE4 Blueprint 类型详解

    Blueprint 类型详解 Actor: An actor is an object that can be p...

  • Unreal Engine4关卡切换

    参考原文:《UE4中关卡切换》 新建项目在UE4中创建新的项目,选择模板BluePrint——ThirdPerso...

  • Spline

    【UE4】BluePrint+样条曲线的路径动画(可循环)[https://blog.csdn.net/suian...

  • JavaScript之数据类型

    二、数据类型 目录:字符串类型详解、数组类型详解、对象类型详解、分支和循环详解、Map和Set集合(ES6新特性)...

  • UE 读取INI文件

    创建C++文件 文件类型选择 首先新建一个C++类型的Blueprint Function Library。建好后...

  • Unreal4我的蓝图0022bate1

    我的蓝图 蓝图中节点的层级详解。 我的蓝图(My Blueprint) 选项卡显示了蓝图中图表、脚本、函数、宏等内...

  • GitHub资源汇集(2014.07.06整理)

    material api-blueprint API Blueprint http://apiblueprint....

  • Blueprint

    Blueprint概念 简单来说,Blueprint是一个储存操作方法的容器,这些操作在这个Blueprint被注...

  • 使用 API Blueprint 来编写 API 接口文档

    使用 API Blueprint 来编写 API 接口文档 API Blueprint 是什么 API Bluep...

  • UE4拾遗(Blueprint游戏框架基础)

    Blueprint游戏框架基础|实时训练|虚幻引擎 你已经为你的游戏原型做了原型,现在是什么?Alan Noon带...

网友评论

      本文标题:UE4 Blueprint 类型详解

      本文链接:https://www.haomeiwen.com/subject/cszvictx.html