UE4 Blueprint Multiple Event BeginPlay

Posted 金庆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UE4 Blueprint Multiple Event BeginPlay相关的知识,希望对你有一定的参考价值。

Multiple Event BeginPlay

(金庆的专栏 2021.7)

How to do multiple actions on Event BeginPlay in UE4 Blueprints?

Sams-Teach-Yourself-Unreal-Engine-4-Game-Development-in-24-Hours says:

Q. When I try to add a second event node, BeginPlay, the Editor shows me the first one already
placed in the Event Graph. Why does this happen?

A. Some events, such as Event Tick and the BeginPlay event, can have only one instance per
Blueprint. 

https://forums.unrealengine.com/t/do-multiple-things-on-event-begin-play/411/10

The Sequence node allows for a single execution pulse to trigger a series of events in order. 
The node may have any number of outputs, all of which get called as soon as the Sequence node receives an input. 
They will always get called in order, but without any delay. 
To a typical user, the outputs will likely appear to have been triggered simultaneously.

Youtube video: How to do Multiple Actions on Event Begin Play Unreal Engine 4 Blueprints

以上是关于UE4 Blueprint Multiple Event BeginPlay的主要内容,如果未能解决你的问题,请参考以下文章

《UE4 FAQ》

《UE4 FAQ》

游戏建模师干货分享,教你如何在UE4的编辑器中调用蓝图

[UE4]自定义结构体类数据表

UE4虚幻引擎蒙太奇动画系统入门

UE4 C++简易背包系统(上)